// Token: 0x06000FE0 RID: 4064 RVA: 0x0004B234 File Offset: 0x00049434
        public static double[] GetMVR8(byte[] buff, ref int pos, int posMax)
        {
            uint dword = ParseSerialize.GetDword(buff, ref pos, posMax);

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

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