ulong


using System;

/* A ulong value represents 64-bit unsigned integer type */
public class ulongExample
{

    static void Main(String[] args)
    {
        ulong x = 100, y = 50
        Console.WriteLine(x.GetType());
        Console.WriteLine(typeof(ulong));
        Console.WriteLine(ulong.MinValue);
        Console.WriteLine(ulong.MaxValue);
        ulong z = (x + y);           
        Console.WriteLine("Sum = " + z);
        Console.ReadLine();
    }

}

Output:
System.UInt64
System.UInt64
0
18446744073709551615
Sum = 150