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 "

Code:
            int a;
            a = int.MinValue();
            Console.Write("The minimum int value is {0}, a");
I have also tried with int32.MinValue()