示例#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);
 }
 public EqualByComplexTypeBenchmarks()
 {
     this.x = new ComplexType();
     this.y = new ComplexType();
 }