namespace ChadSoft.Data { /// /// Used to judge if a particular object meets some criteria. /// public interface ICriteria { /// /// Does obj meet the criteria? /// ///Object to evaluate ///Whether or not obj meets the criteria. bool IsMatch(object x); } }