Skip to content

Instantly share code, notes, and snippets.

@forki
Created November 14, 2014 18:12
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 forki/7c8ef4c3126c953630fb to your computer and use it in GitHub Desktop.
Save forki/7c8ef4c3126c953630fb to your computer and use it in GitHub Desktop.
// old (pre C# 6.0)
if (customer == null) throw new ArgumentNullException("customer");
// C# 6.0
if (customer == null) throw new ArgumentNullException(nameof(customer)); // rename works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment