Chain ?? Operators
You can use multiple ?? operators to chain multiple null comparisons:
string text = value1 ?? value2 ?? String.Empty;
You can use multiple ?? operators to chain multiple null comparisons:
string text = value1 ?? value2 ?? String.Empty;