Null Propagation Operator in C#

Handles system.NullReferenceException

?. -> member access operator

?[ ]. -> element access operator

?? -> null coalescing operator

Last updated