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