ternary expression c# code example
Example 1: c# ternary
// ---------------- Syntax of Ternary Operators ----------------- //
string stateOfMatter;
int temperature = 23;
// ---- For just one condition ---- //
stateOfMatter = temperature < 0 ? "Solid": "Liquid";
// If temperature is below zero, then stateOfMatter is solid, otherwise
// it will be liquid
// ---- For more conditions ---- //
stateOfMatter = temperature < 0 ? "Solid" : (temperature > 100 ? "Gas" : "Liquid");
Example 2: c# ternary operator
is this condition true ? yes : no
Example 3: c# ternary condition
condition ? consequent : alternative
Example 4: c# ternary operator
double sinc(double x) => x != 0.0 ? Math.Sin(x) / x : 1;
Console.WriteLine(sinc(0.1));
Console.WriteLine(sinc(0.0));
// Output:
// 0.998334166468282
// 1
Example 5: c# ternary operation
condition ? consequent : alternative