Open In App

UInt64.MaxValue Field in C# with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The MaxValue field of UInt64 Struct is used to represent the maximum value of the 64-bit unsigned long 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 18446744073709551615. Its hexadecimal value is 0xFFFFFFFFFFFFFFFF. It is used to avoid the OverflowException at runtime.

Syntax:

public const ulong MaxValue = 18446744073709551615;

Return Value: This field always returns 18446744073709551615.

Example:




// C# program to illustrate the
// UInt64.MaxValue Field
using System;
  
class GFG {
  
    // Main Method
    static public void Main()
    {
        // display the Maximum
        // value of UInt64 struct
        Console.WriteLine("Maximum Value is: " + UInt64.MaxValue);
  
        // taking a variable
        ulong var1 = 93422337368375807;
  
        if (var1.Equals(UInt64.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: 18446744073709551615
Not equal..!!
Type of var1 is: UInt64

Reference:


Last Updated : 01 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads