Skip to content

Instantly share code, notes, and snippets.

@EifelMono
Created August 7, 2014 05:43
Show Gist options
  • Save EifelMono/784862546cbbe6c0a4b2 to your computer and use it in GitHub Desktop.
Save EifelMono/784862546cbbe6c0a4b2 to your computer and use it in GitHub Desktop.
c# Extention IsAssigned
public static class Extentions
{
public static bool IsAssigned(this object value)
{
return value != null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment