c# as operator in if statement code example
Example 1: conditonal statements c sharp online
var rand = new Random();
var condition = rand.NextDouble() > 0.5;
var x = condition ? 12 : (int?)null;
Example 2: c# inline if
(condition ? [true value] : [false value])
int x = a ? b : c;