C# ? Operators

C# ? Operators

A statement using the conditional operator such as this 1 int ? age = p == null ? null : p.Age; …can be simplified: ...