AM
{
Person? p = Find("John");
if (IsValid(p))
{
Console.WriteLine($"Found {p.Name}");
}
}
public static bool IsValid([NotNullWhen(true)] Person? person)
=> person is not null && person.Name is not null;
Size: a a a
AM
AM
Ɖ
Ɖ
PE
AM
Ɖ
SC
Ɖ
Ɖ
SC
VL
VL
Ɖ
Ɖ
VL
Ɖ
VL
VL