Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
 public bool Equals(Tuple2 <T0, T1> rhs)
 {
     return(this == rhs);
 }