Skip to content

Instantly share code, notes, and snippets.

@atsvetkov
Last active June 10, 2017 12:26
Show Gist options
  • Save atsvetkov/4df132077018826dc5f459ffa318c803 to your computer and use it in GitHub Desktop.
Save atsvetkov/4df132077018826dc5f459ffa318c803 to your computer and use it in GitHub Desktop.
public static class Guard
{
public static void NotNull(object value)
{
if (value == null)
{
throw new ArgumentNullException(/* how to get original argument name here??? */);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment