Int64.MaxValue Field in C# with Examples Last Updated : 08 Apr, 2019 Comments Improve Suggest changes Like Article Like Report 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 const long MaxValue = 9223372036854775807; Return Value: This field always returns 9223372036854775807. Example: CSharp // C# program to illustrate the // Int64.MaxValue Field using System; class GFG { // Main Method static public void Main() { // display the Maximum // value of Int64 struct Console.WriteLine("Maximum Value is: "+ Int64.MaxValue); // taking a variable long var1 = 93422337368375807; if(var1.Equals(Int64.MaxValue)) { Console.WriteLine("Equal..!!"); Console.WriteLine("Type of var1 is: {0}", var1.GetTypeCode()); } else { Console.WriteLine("Not equal..!!"); Console.WriteLine("Type of var1 is: {0}", var1.GetTypeCode()); } } } Output: Maximum Value is: 9223372036854775807 Not equal..!! Type of var1 is: Int64 Reference: https://docs.microsoft.com/en-us/dotnet/api/system.int64.maxvalue?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article Int64.MaxValue Field in C# with Examples A ankita_saini Follow Improve Article Tags : C# CSharp-Int64-Struct Similar Reads 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 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 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.MinValue Field in C# with Examples 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 i 1 min read Like