c# if then shorthand code example
Example 1: c# inline if
(condition ? [true value] : [false value])
int x = a ? b : c;
Example 2: c# ternary operator
is this condition true ? yes : no
(condition ? [true value] : [false value])
int x = a ? b : c;
is this condition true ? yes : no