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






UInt16.MinValue


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.MaxValue
3.UInt16.ToString()