0 votes
in C Sharp by
Why to use “Nullable Coalescing Operator” (??) in C#?

1 Answer

0 votes
by
Nullable Coalescing Operator can be used with reference types and nullable value types. So if the first operand of the expression is null then the value of second operand is assigned to the variable. For example,

double? myFirstno = null;

double mySecno;

mySecno = myFirstno ?? 10.11;
...