We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#Matcher<T>
Matcher<T> is an abstract base class that allows you to override the functionality you wish to modify:
public class CarMatcher : Matcher<Car> { public override bool Matches(Car car) { if (something) return true; return false; } }