Hello,
I am trying to store and view the minimum int number. I have understood that I should use int.MinValue but this code gives the error:
"Non-invocable member "int.MinValue"cannot be used like at method "
I have also tried with int32.MinValue()Code:int a; a = int.MinValue(); Console.Write("The minimum int value is {0}, a");




Reply With Quote