execute conditionally c# inline code example
Example 1: c# if statement one line
someValue = condition ? newValue : someValue;
Example 2: c# ternary condition
condition ? consequent : alternative
someValue = condition ? newValue : someValue;
condition ? consequent : alternative