UInt64.MaxValue : UInt64 « System « C# / C Sharp by API






UInt64.MaxValue

 
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);
    }

}

   
  








Related examples in the same category