Skip to content

Instantly share code, notes, and snippets.

@lomholdt
Created September 12, 2018 06:18
Show Gist options
  • Save lomholdt/f7483d29d63b7f8602f32ab59124abc0 to your computer and use it in GitHub Desktop.
Save lomholdt/f7483d29d63b7f8602f32ab59124abc0 to your computer and use it in GitHub Desktop.
if (!(person is null)) {
throw new ArgumentNullException(nameof(person));
}
if (person is null == false) {
throw new ArgumentNullException(nameof(person));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment