Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

what is the meaning of ?? in c#

//the null-coalescing operator ?? returns the value of its left-hand operand if 
//it isn't null; otherwise, it evaluates the right-hand operand and returns 
//its result. 
 
PREVIOUS NEXT
Tagged: #meaning
ADD COMMENT
Topic
Name
4+7 =