Boolean logical AND operator : Logical Relational Operators « Operator « C# / CSharp Tutorial






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

  }

}
(1 == 1) && (2 > 1) is True
(1 == 1) && (2 < 1) is False








3.6.Logical Relational Operators
3.6.1.Relational Operators
3.6.2.Logical operators
3.6.3.false expressions for operators: ==, > and <
3.6.4.true expressions for operators: !=, >, <
3.6.5.Boolean logical AND operator
3.6.6.Boolean logical OR operator
3.6.7.Boolean logical NOT operator
3.6.8.Logical operators with an if statement
3.6.9.List of Boolean Operators