public override bool Equals(object obj)
 {
     return(PropertyEqualityTester.AreEqual(this, obj));
 }
Exemple #2
0
 public bool Equals(GenericSettings other)
 {
     // This works for all known descendants
     return(other == null ? false : PropertyEqualityTester.AreEqual(this, other));
 }
Exemple #3
0
 public virtual bool Equals(GenericSettings other)
 {
     return(PropertyEqualityTester.AreEqual(this, other));
 }
 public bool Equals(GenericSettings other)
 {
     return(other == null ? false : PropertyEqualityTester.AreEqual(this, other));
 }
Exemple #5
0
 public override bool Equals(object obj)
 {
     // This works for all known descendants
     return(PropertyEqualityTester.AreEqual(this, obj));
 }