Created
September 12, 2018 06:18
-
-
Save lomholdt/f7483d29d63b7f8602f32ab59124abc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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