// Token: 0x06000FCF RID: 4047 RVA: 0x0004AF44 File Offset: 0x00049144
 public static void SetMVBinary(byte[] buff, ref int pos, byte[][] values)
 {
     ParseSerialize.SetDword(buff, ref pos, values.Length);
     for (int i = 0; i < values.Length; i++)
     {
         ParseSerialize.SetByteArray(buff, ref pos, values[i]);
     }
 }