Skip to content

Instantly share code, notes, and snippets.

@codereflection
Created May 9, 2012 19:31
Show Gist options
  • Save codereflection/2648218 to your computer and use it in GitHub Desktop.
Save codereflection/2648218 to your computer and use it in GitHub Desktop.
ToBeTrim
public static string ToBeTrim(this string givenString)
{
if (!string.IsNullOrEmpty(givenString))
return givenString.Trim();
return string.Empty;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment