System.Console.WriteLine(int.MaxValue);
This line gives me the answer of 2,147,483,647 as I have a 32-bit PC.
2,147,483,647
Will the answer be s
int is just an alias for Int32 - it's defined in the C# specification. Therefore int.MaxValue is the same as Int32.MaxValue which will always be 2147483647.
int
Int32
int.MaxValue
Int32.MaxValue