示例#1
0
    public override int GetHashCode()
    {
        int hash = 1;

        if (MapUUID.Length != 0)
        {
            hash ^= MapUUID.GetHashCode();
        }
        if (ServerID != 0)
        {
            hash ^= ServerID.GetHashCode();
        }
        if (_unknownFields != null)
        {
            hash ^= _unknownFields.GetHashCode();
        }
        return(hash);
    }