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