// Token: 0x06000FDB RID: 4059 RVA: 0x0004B0FC File Offset: 0x000492FC
        public static Guid GetGuid(byte[] buff, ref int pos, int posMax)
        {
            ParseSerialize.CheckBounds(pos, posMax, 16);
            Guid result = ParseSerialize.ParseGuid(buff, pos);

            pos += 16;
            return(result);
        }