Logical operators with an if statement : Logical Relational Operators « Operator « C# / CSharp Tutorial






class MainClass
{

  public static void Main()
  {

    int intValue = 1500;
    string stringValue = "closed";

    if ((intValue > 1000) && (stringValue == "closed"))
    {
      System.Console.WriteLine("and");
    }
  }
}
and








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