UnityEngine.NetworkViewID.Internal_Compare C# (CSharp) 메소드

Internal_Compare() 정적인 개인적인 메소드

static private Internal_Compare ( NetworkViewID lhs, NetworkViewID rhs ) : bool
lhs NetworkViewID
rhs NetworkViewID
리턴 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