c# ternary conditional operator code example
Example 1: c# ternary
string stateOfMatter;
int temperature = 23;
stateOfMatter = temperature < 0 ? "Solid": "Liquid";
stateOfMatter = temperature < 0 ? "Solid" : (temperature > 100 ? "Gas" : "Liquid");
Example 2: c# if statement one line
someValue = condition ? newValue : someValue;
Example 3: c# ternary operator
is this condition true ? yes : no
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));