Post Made Community Wiki by Community
show/hide this revision's text 2 deleted 8 characters in body

From Rick Strahl:

You can chain the ?? operator so that so that you can do a bunch of null comparisons.

string result = value1 ?? value2 ?? value3 ?? String.Empty;
show/hide this revision's text 1

From Rick Strahl:

You can chain the ?? operator so that so that you can do a bunch of null comparisons.

string result = value1 ?? value2 ?? value3 ?? String.Empty;