UInt16.ToString() : UInt16 « System « C# / C Sharp by API






UInt16.ToString()


using System;

class MainClass
{
    public static void Main(string[] args)
    {
    System.UInt16 myUInt16 = 30000;
    Console.WriteLine("Your value is: {0}", myUInt16.ToString());
    Console.WriteLine("I am a: {0}", myUInt16.GetType().ToString());
    }

}

 








Related examples in the same category

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