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






UInt16.MaxValue


using System;

class MainClass
{
    public static void Main(string[] args)
    {
    Console.WriteLine("Max for an UInt16 is: {0}", UInt16.MaxValue);
    Console.WriteLine("Min for an UInt16 is: {0}", UInt16.MinValue);

    }

}

 








Related examples in the same category

1.UInt16.GetType()
2.UInt16.MinValue
3.UInt16.ToString()