// Token: 0x06000FE3 RID: 4067 RVA: 0x0004B308 File Offset: 0x00049508
        public static Guid[] GetMVGuid(byte[] buff, ref int pos, int posMax)
        {
            uint dword = ParseSerialize.GetDword(buff, ref pos, posMax);

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

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