protected bool Equals(ComplexTypeWithObject other)
 {
     return Date.Equals(other.Date) && NullableInt == other.NullableInt &&
            Equals(InterfaceHolder, other.InterfaceHolder) && Equals(ObjectHolder, other.ObjectHolder) &&
            Equals(BaseType, other.BaseType);
 }
Example #2
0
 protected bool Equals(ComplexTypeWithObject other)
 {
     return(Date.Equals(other.Date) && NullableInt == other.NullableInt &&
            Equals(InterfaceHolder, other.InterfaceHolder) && Equals(ObjectHolder, other.ObjectHolder) &&
            Equals(BaseType, other.BaseType));
 }