Boolean logical AND operator : Logical Relational Operators : Operator C# Examples


C# Examples » Operator » Logical Relational Operators »

 

Boolean logical AND operator









    
class  MainClass
{

    public  static  void  Main()
    {
        bool  result;
        
        result  =  (1  ==  1)  &&  (2  >  1);
        System.Console.WriteLine("(1  ==  1)  &&  (2  >  1)  is  "  +  result);
        result  =  (1  ==  1)  &&  (2  <  1);
        System.Console.WriteLine("(1  ==  1)  &&  (2  <  1)  is  "  +  result);

    }

}
    
   
  
   



Output

(1 == 1) && (2 > 1) is True
(1 == 1) && (2 


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Operator
» Logical Relational Operators