Int Int Int Int Int
Int Int Int Int Int
// Assignment operator x = 3; // Addition operator x = 3 + 4; // Subtraction operator x = 4 - 3; // Multiplication operator x = 10 * 5; // Division operator x = 10 / 5; // Equality operator if (x == y) { } // Greater than operator if (x > y) { } // Less than operator if (x < y) { } // Greater or equal to operator if (x >= y) { } // Less than or equal to operator if (x <= y) { } // Conditional AND operator if ((x > y) && (a > b)) { } // Conditional OR operator if ((x > y) || (a > b)) {
} // Conditional string message = (x == 1) ? "Car" : "Boat"; // Member access and Method invocation Console.WriteLine("Hi");