Skip to content

Instantly share code, notes, and snippets.

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