System.UInt16 value : Data Type : Data Type C# Examples


C# Examples » Data Type » Data Type »

 

System.UInt16 value









    
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());
        }

}
    
   
  
   



Output

Your value is: 30000
I am a: System.UInt16


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Data Type