Example #1
0
 public bool Equals(StructWithGenericTypeParamRef <T1, T2> other)
 {
     throw new NotImplementedException();
 }
Example #2
0
 static bool InternalEquals(StructWithGenericTypeParamRef <T1, T2> left, StructWithGenericTypeParamRef <T1, T2> right)
 {
     return(StringComparer.Ordinal.Equals(left._field, right._field) &&
            Equals(left.Property1, right.Property1) &&
            Equals(left.Property2, right.Property2));
 }