Ejemplo n.º 1
0
        public static bool smethod_0(ThreeDCoord a, ThreeDCoord b)
        {
            if (System.Object.ReferenceEquals(a, b))
            {
                return(true);
            }

            if ((object)a == null || (object)b == null)
            {
                return(false);
            }

            return(a.x == b.x && a.y == b.y);
        }
Ejemplo n.º 2
0
 public static bool smethod_1(ThreeDCoord a, ThreeDCoord b)
 {
     return(!ThreeDCoord.smethod_0(a, b));
 }