C# Relational Operators

The C# Relational operators work on two operands and return the boolean value true (1) if the relation between two operands is satisfied. Otherwise, it returns false (0). The following C# Relational operators table shows different relational operators. Symbols Operation Example = = Equal To 3 = = 2 returns false > Greater than 3 … Read more