Esempio n. 1
0
 protected bool Equals(TypeSelectorBase <T> other)
 {
     return(Priority == other.Priority && TargetType == other.TargetType);
 }
Esempio n. 2
0
 public CustomDerivedPropertySelector(TypeSelectorBase <T> baseSelector, PropertyInfo property)
 {
     InternalSelector = baseSelector;
     CustomProperty   = property;
     Priority         = SelectorPriorityConstants.CustomSelectorPriorty;
 }