DefaultIfNull
return default value if string is null
Source
public static string DefaultIfNull(this string str, string defaultValue)
{
return str ?? defaultValue;
}
Example
string str = null;
str.DefaultIfNull("I'm nil") // return "I'm nil"
string str1 = "Hello!";
str1.DefaultIfNull("I'm nil") // return "Hello!"