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