Skip to content

Instantly share code, notes, and snippets.

@carlosschults
Last active December 21, 2017 01:36
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