Question:What does the ?? operator do?
A Checks for equality B Returns the left operand if not null, otherwise the right operand C Performs logical negation D None
+ AnswerB
+ ExplanationThe ?? operator is known as the null-coalescing operator.
+ Report