C# Tips and Tricks: Checking for empty strings

When checking to see if a string is empty I got tired of checking for null and then seeing if it was empty now I only use the following method.

public string StandardMethodName(string inputString)
{
 if(string.IsNullOrEmpty(inputString))
 {
  inputString = "Default value";
 }

 return inputString;
}

Leave a comment