inline conditional c# code example
Example 1: c# if statement one line
someValue = condition ? newValue : someValue;
Example 2: c# inline if
(condition ? [true value] : [false value])
int x = a ? b : c;
Example 3: c# ternary operator
is this condition true ? yes : no