public bool Equals(XamlValueConverter <TConverterBase> other) { return(!ReferenceEquals(other, null) && ConverterType == other.ConverterType && TargetType == other.TargetType && Name == other.Name); }
static bool IsNull(XamlValueConverter <TConverterBase> a) { return(Object.ReferenceEquals(a, null)); }
public bool Equals(XamlValueConverter <TConverterBase> other) { return(!IsNull(other) && ConverterType == other.ConverterType && TargetType == other.TargetType && Name == other.Name); }
public XamlXamlTypeValueConverter(XamlValueConverter <IXamlTypeConverter> converter, XamlType targetType) : base(null, targetType) { _converter = converter; }