Skip to content

Instantly share code, notes, and snippets.

@enisn
Created May 8, 2020 21:06
Show Gist options
  • Save enisn/09964795a1e9df29986a92182996820e to your computer and use it in GitHub Desktop.
Save enisn/09964795a1e9df29986a92182996820e to your computer and use it in GitHub Desktop.
NullCheck - Sample 1
public void DoSomething(string message)
{
if(message == null)
throw new ArgumentNullException();
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment