Пример #1
0
 protected bool Equals(ComplexType other)
 {
     return string.Equals(this.Name, other.Name) && this.Value == other.Value;
 }
Пример #2
0
 protected bool Equals(ComplexType other)
 {
     return(string.Equals(this.Name, other.Name) && this.Value == other.Value);
 }
Пример #3
0
 public EqualByDynamicComplexTypeBenchmarks()
 {
     this.x = new ComplexType();
     this.y = new ComplexType();
     this.Meh((x, y) => x.Name == y.Name && x.Value == y.Value);
 }
Пример #4
0
 public EqualByComplexTypeBenchmarks()
 {
     this.x = new ComplexType();
     this.y = new ComplexType();
 }