Skip to content

Instantly share code, notes, and snippets.

@gindyo
Created March 25, 2016 18:02
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 gindyo/f10240caa72bd462879d to your computer and use it in GitHub Desktop.
Save gindyo/f10240caa72bd462879d to your computer and use it in GitHub Desktop.
public class Guard{
public void IsNotNull(object o, string oname){
if(null == o) throw ArgumentNullException(oname);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment