Skip to content

Instantly share code, notes, and snippets.

@enisn
Created May 8, 2020 21:12
Show Gist options
  • Select an option

  • Save enisn/12925d252a183d5ebfcecdd73f7bd5a2 to your computer and use it in GitHub Desktop.

Select an option

Save enisn/12925d252a183d5ebfcecdd73f7bd5a2 to your computer and use it in GitHub Desktop.
Nullcheck - Sample 2
public void DoSomething([NotNull]string message) // Does not affect anything at runtime.
{
}
public void AnotherMethod()
{
DoSomething(null); // MsBuild doesn't allow to build.
string parameter = null;
DoSomething(parameter); // MsBuild allows build. But nothing happend at runtime.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment