Possible Duplicate:
What is the “??” operator for?
I saw a line of code which states -
return (str ?? string.Empty).Replace(txtFind.Text, txtReplace.Text);
I want to know the exact meaning of this line(i.e. the ?? part)..
I saw a line of code which states -
I want to know the exact meaning of this line(i.e. the |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's the null coalescing operator: it returns the first argument if it's non null, and the second argument otherwise. In your example, It's particularly useful with nullable types, as it allows a default value to be specified:
Edit:
|
||||
|
It's called the null coalescing operator. It allows you conditionally select first non-null value from a chain:
The value in |
||||
|
|
|
it's an equivalent of
|
|||||||||
|
|
The ?? operator says that return me the non null value. So, if you have the following code:
The above code will return "John Doe" since firstName value is null. That's it! |
|||
|
|
could be written as:
or as a ternary statement:
|
|||
|