Пример #1
0
 public bool Equals(SettingsValue other)
 {
     return(true && Origin.Equals(other.Origin) && Value.Equals(other.Value));
 }
Пример #2
0
 public bool Equals(RcProperty other)
 {
     return(true && TypeName.Equals(other.TypeName) && PropertyName.Equals(other.PropertyName) && Origin.Equals(other.Origin) && Value.Equals(other.Value));
 }
Пример #3
0
 public bool Equals(PropertyValues other)
 {
     return(true && PropertyName.Equals(other.PropertyName) && OldValue.Equals(other.OldValue) && NewValue.Equals(other.NewValue));
 }