public override bool Equals(object other) { if (!(other is NetworkViewID)) { return(false); } return(NetworkViewID.Internal_Compare(this, (NetworkViewID)other)); }
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); }
public static bool operator !=(NetworkViewID lhs, NetworkViewID rhs) { return(!NetworkViewID.Internal_Compare(lhs, rhs)); }