// Token: 0x06000FDC RID: 4060 RVA: 0x0004B124 File Offset: 0x00049324
        public static byte[][] GetMVBinary(byte[] buff, ref int pos, int posMax)
        {
            uint dword = ParseSerialize.GetDword(buff, ref pos, posMax);

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

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