Skip to content

Instantly share code, notes, and snippets.

@goldytech
Created October 7, 2019 12:13
Show Gist options
  • Save goldytech/417bf91ca68bd24f6bb345e3632e3c35 to your computer and use it in GitHub Desktop.
Save goldytech/417bf91ca68bd24f6bb345e3632e3c35 to your computer and use it in GitHub Desktop.
Property Pattern matching
private static bool IsHrManagerByPropertyPattern(object employee)
{
return employee is Emp e && e is { IsManager: true, Department: {Name: "Human Resources" } };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment