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