Is there an easier way to do this?
string s = i["property"] != null ? "none" : i["property"].ToString();
notice the difference between it and null-coalesce (??) is that the not-null value (first operand of ?? op) is accessed before returning.
|
Is there an easier way to do this?
notice the difference between it and null-coalesce (??) is that the not-null value (first operand of ?? op) is accessed before returning.
| |||
|
feedback
|
|
Try the following
| |||
|
feedback
|
|
If indexer returns
or just:
If
| |||||
feedback
|
|
Alternatives for fun.
| |||
feedback
|