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