Internal_Compare() static private method

static private Internal_Compare ( NetworkViewID lhs, NetworkViewID rhs ) : bool
lhs NetworkViewID
rhs NetworkViewID
return bool
コード例 #1
0
 public override bool Equals(object other)
 {
     if (!(other is NetworkViewID))
     {
         return(false);
     }
     return(NetworkViewID.Internal_Compare(this, (NetworkViewID)other));
 }
コード例 #2
0
        public override bool Equals(object other)
        {
            bool result;

            if (!(other is NetworkViewID))
            {
                result = false;
            }
            else
            {
                NetworkViewID rhs = (NetworkViewID)other;
                result = NetworkViewID.Internal_Compare(this, rhs);
            }
            return(result);
        }
コード例 #3
0
 public static bool operator !=(NetworkViewID lhs, NetworkViewID rhs)
 {
     return(!NetworkViewID.Internal_Compare(lhs, rhs));
 }