Skip to content

Instantly share code, notes, and snippets.

@amhed
Created October 1, 2013 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amhed/6773245 to your computer and use it in GitHub Desktop.
Save amhed/6773245 to your computer and use it in GitHub Desktop.
IsNullOrEmpty decompiled source
public static bool IsNullOrEmpty(string value) { if (value != null) return value.Length == 0; else return true; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment