Skip to content

Instantly share code, notes, and snippets.

@carlosschults
Created December 21, 2017 01:37
Show Gist options
  • Save carlosschults/518c1b35560cafe17fca829aa2aef27b to your computer and use it in GitHub Desktop.
Save carlosschults/518c1b35560cafe17fca829aa2aef27b to your computer and use it in GitHub Desktop.
csharp8-null-treatment-2cs
public int CalculateSquareOfAge(Person? p)
{
int age = p?.Age ?? 0;
return age * age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment