// Token: 0x06000FE1 RID: 4065 RVA: 0x0004B278 File Offset: 0x00049478
        public static long[] GetMVInt64(byte[] buff, ref int pos, int posMax)
        {
            uint dword = ParseSerialize.GetDword(buff, ref pos, posMax);

            ParseSerialize.CheckCount(dword, 8, posMax - pos);
            long[] array = new long[dword];
            int    num   = 0;

            while ((long)num < (long)((ulong)dword))
            {
                array[num] = (long)ParseSerialize.GetQword(buff, ref pos, posMax);
                num++;
            }
            return(array);
        }