// Token: 0x06000FD4 RID: 4052 RVA: 0x0004AFFC File Offset: 0x000491FC
        public static uint GetDword(byte[] buff, ref int pos, int posMax)
        {
            ParseSerialize.CheckBounds(pos, posMax, 4);
            uint result = (uint)ParseSerialize.ParseInt32(buff, pos);

            pos += 4;
            return(result);
        }