// Token: 0x06000FD5 RID: 4053 RVA: 0x0004B024 File Offset: 0x00049224
        public static ushort GetWord(byte[] buff, ref int pos, int posMax)
        {
            ParseSerialize.CheckBounds(pos, posMax, 2);
            ushort result = (ushort)ParseSerialize.ParseInt16(buff, pos);

            pos += 2;
            return(result);
        }