Skip to content
grahamrhay edited this page Nov 11, 2010 · 3 revisions

#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;
        }
    }
Clone this wiki locally