// Token: 0x06000FCE RID: 4046 RVA: 0x0004AF14 File Offset: 0x00049114
 public static void SetMVUnicode(byte[] buff, ref int pos, string[] values)
 {
     ParseSerialize.SetDword(buff, ref pos, values.Length);
     for (int i = 0; i < values.Length; i++)
     {
         ParseSerialize.SetUnicodeString(buff, ref pos, values[i]);
     }
 }