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