Skip to content

Instantly share code, notes, and snippets.

@GuyHarwood
Created February 18, 2013 17:25
Show Gist options
  • Save GuyHarwood/4979009 to your computer and use it in GitHub Desktop.
Save GuyHarwood/4979009 to your computer and use it in GitHub Desktop.
public static bool IsNull<T>(this T instanceToCheck) where T : class
{
return instanceToCheck == default(T);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment