Int32.MinValue Field in C# with Examples Last Updated : 08 Apr, 2019 Comments Improve Suggest changes Like Article Like Report The MinValue property or Field of Int32 Struct is used to represent the minimum possible value of Int32. The value of this field is constant means that a user cannot change the value of this field. The value of this field is -2,147,483,648. Its hexadecimal value is 0x80000000. Syntax: public const int MinValue = -2147483648; Return Value: This field always returns -2147483648. Example: CSharp // C# program to illustrate the // Int32.MinValue field using System; class GFG { // Main Method static public void Main() { // display the Minimum value of Int32 struct Console.WriteLine("Minimum Value is: "+ Int32.MinValue); // Taking an array of long i.e Int64 data type long []num = {346, 434443, -33445, -442343263647}; // taking variable of Int32 type int mynum; foreach(long n in num) { if(n >= Int32.MinValue && n <= Int32.MaxValue) { // using the method of Convert class mynum = Convert.ToInt32(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } } Output: Minimum Value is: -2147483648 Conversion is Possible. Conversion is Possible. Conversion is Possible. Not Possible Reference: https://docs.microsoft.com/en-us/dotnet/api/system.int32.minvalue?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article Int32.MinValue Field in C# with Examples ankita_saini Follow Improve Article Tags : C# CSharp-Int32-Struct Similar Reads Int64.MinValue Field in C# with Examples The MinValue property or Field of Int64 Struct is used to represent the minimum possible value of Int64. The value of this field is constant means that a user cannot change the value of this field. The value of this field is -9223372036854775808. Its hexadecimal value is 0x8000000000000000. Syntax: 1 min read Int16.MinValue Field in C# with Examples The MinValue property or Field of Int16 Struct is used to represent the minimum possible value of Int16. The value of this field is constant means that a user cannot change the value of this field. The value of this field is -32768. Its hexadecimal value is 0x8000. It also saves the program from Ove 2 min read Int32.MaxValue Field in C# with Examples The MaxValue field or property of Int32 Struct is used to represent the maximum value of Int32. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 2147483647. Its hexadecimal value is 0x7FFFFFFF. It is used to avoid the OverflowE 1 min read Int16.MaxValue Field in C# with Examples The MaxValue field or property of Int16 Struct is used to represent the maximum value of Int16. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 32767. Its hexadecimal value is 0x7FFF. It is used to avoid the OverflowException 2 min read Int64.MaxValue Field in C# with Examples The MaxValue field or property of Int64 Struct is used to represent the maximum value of Int64. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 9223372036854775807. Its hexadecimal value is 0x7FFFFFFFFFFFFFFF. Syntax: public c 1 min read UInt32.MinValue Field in C# with Examples The MinValue Field of UInt32 Struct is used to represent the minimum possible value of 32-bit unsigned integer i.e of uint data type. The value of this field is constant means that a user cannot change the value of this field. The value of this field is 0. Syntax: public const uint MinValue = 0; Ret 1 min read UInt64.MinValue Field in C# with Examples The MinValue property or Field of UInt64 Struct is used to represent the minimum possible value of the 64-bit unsigned long integer i.e. ulong data type. The value of this field is constant means that a user cannot change the value of this field. The value of this field is 0. This prevents an Overfl 1 min read UInt16.MinValue Field in C# with Examples The MinValue field of UInt16 Struct is used to represent the minimum possible value of 16-bit unsigned integer i.e. ushort data type. The value of this field is constant means that a user cannot change the value of this field. The value of this field is 0. It also saves the program from OverflowExce 2 min read UInt32.MaxValue Field in C# with Examples The MaxValue field of UInt32 Struct is used to represent the maximum value of the 32-bit unsigned integer. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 4294967295. Its hexadecimal value is 0xFFFFFFFF. It is used to avoid th 2 min read UInt16.MaxValue Field in C# with Examples The MaxValue field of UInt16 Struct is used to represent the maximum value of the 16-bit unsigned integer. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 65535. Its hexadecimal value is 0xFFFF. It is used to avoid the Overflo 2 min read Like