UInt16.MaxValue/MinValue : Data Type : Data Type C# Examples


C# Examples » Data Type » Data Type »

 

UInt16.MaxValue/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);

        }

}
    
   
  
   



Output

Max for an UInt16 is: 65535
Min for an UInt16 is: 0


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Data Type