C# Short Hand If...Else


Short Hand If...Else (Ternary Operator)

There is also a short-hand if else, which is known as the ternary operator because it consists of three operands. It can be used to replace multiple lines of code with a single line. It is often used to replace simple if else statements:

Syntax

variable = (condition) ? expressionTrue :  expressionFalse;

Instead of writing:

Example

int time = 20;
if (time < 18) 
{
  Console.WriteLine("Good day.");
} 
else 
{
  Console.WriteLine("Good evening.");
}

Try it Yourself »

You can simply write:

Example

int time = 20;
string result = (time < 18) ? "Good day." : "Good evening.";
Console.WriteLine(result);

Try it Yourself »


C# Exercises

Test Yourself With Exercises

Exercise:

Print "Hello World" if x is greater than y.

int x = 50;
int y = 10;
 (x  y) 
{
  Console.WriteLine("Hello World");
}

Start the Exercise


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.