C# UInt64 MinValue
Description
UInt64 MinValue
represents the smallest possible value
of UInt64. This field is constant.
Syntax
UInt64.MinValue
has the following syntax.
public const ulong MinValue
Example
/* www . j a v a 2 s .co m*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt64.MaxValue);
}
}
The code above generates the following result.