VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/int32-minvalue-field-in-c-sharp-with-examples/

⇱ Int32.MinValue Field in C# with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Int32.MinValue Field in C# with Examples

Last Updated : 11 Jul, 2025
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: Output:
Minimum Value is: -2147483648
Conversion is Possible.
Conversion is Possible.
Conversion is Possible.
Not Possible
Reference:
Comment
Article Tags:

Explore