ulong
using System;
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("-> ulong.MaxValue: {0}",ulong.MaxValue);
Console.WriteLine("-> ulong.MinValue: {0}\n",ulong.MinValue);
}
}
Output -> ulong.MaxValue: 18446744073709551615
-> ulong.MinValue: 0
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|