Ejemplo n.º 1
0
 public bool Equals(XamlValueConverter <TConverterBase> other)
 {
     return(!IsNull(other) && ConverterType == other.ConverterType && TargetType == other.TargetType && Name == other.Name);
 }
Ejemplo n.º 2
0
 static bool IsNull(XamlValueConverter <TConverterBase> a)
 {
     return(Object.ReferenceEquals(a, null));
 }