Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 15:51
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 lgolubyev/2b8005eeefa00d1d0aceca31f6392a90 to your computer and use it in GitHub Desktop.
Save lgolubyev/2b8005eeefa00d1d0aceca31f6392a90 to your computer and use it in GitHub Desktop.
public static void M(string s)
{
if (s is null)
{
throw new ArgumentNullException(nameof(s));
}
// Body of the method
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment