SyntaxFix
Write A Post
Hire A Developer
Questions
You could write an extension method (for what it's worth):
public static string EmptyNull(this string str) { return str ?? ""; }
Now this works safely:
string str = null; string upper = str.EmptyNull().ToUpper();