bool : Data Type : Data Type C# Examples


C# Examples » Data Type » Data Type »

 

bool









    
using  System;

class  MainClass
{
        public  static  void  Main(string[]  args)
        {
        Console.WriteLine("bool.FalseString:  {0}",bool.FalseString);
        Console.WriteLine("bool.TrueString:  {0}",bool.TrueString);
        }

}
    
   
  
   



Output

bool.FalseString: False
bool.TrueString: True


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Data Type