public override bool Equals(object rhsObj) { if (rhsObj == null) { return(false); } if (GetType() != rhsObj.GetType()) { return(false); } Tuple3 <T0, T1, T2> rhs = (Tuple3 <T0, T1, T2>)rhsObj; return(this == rhs); }
public bool Equals(Tuple3 <T0, T1, T2> rhs) { return(this == rhs); }