Open In App

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:



public const long MinValue = -9223372036854775808;

Return Value: This field always returns -9223372036854775808.

Example:




// C# program to illustrate the
// Int64.MinValue Field
using System;
  
class GFG {
      
    // Main Method
    static public void Main()
    {
        // display the Minimum
        // value of Int64 struct
        Console.WriteLine("Minimum Value is: "+
                               Int64.MinValue);
          
        // taking a variable                   
        long var1 = -2382373544;
           
        if(var1.Equals(Int64.MinValue))
        {
            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:

Minimum Value is: -9223372036854775808
Not equal..!!
Type of var1 is: Int64

Reference:

Article Tags :
C#