UnityEngine.NetworkViewID.Internal_Compare C# (CSharp) Method

Internal_Compare() static private method

static private Internal_Compare ( NetworkViewID lhs, NetworkViewID rhs ) : bool
lhs NetworkViewID
rhs NetworkViewID
return bool
        internal static bool Internal_Compare(NetworkViewID lhs, NetworkViewID rhs)
        {
            return INTERNAL_CALL_Internal_Compare(ref lhs, ref rhs);
        }

Usage Example

コード例 #1
0
 public override bool Equals(object other)
 {
     if (!(other is NetworkViewID))
     {
         return(false);
     }
     return(NetworkViewID.Internal_Compare(this, (NetworkViewID)other));
 }
All Usage Examples Of UnityEngine.NetworkViewID::Internal_Compare