// 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]);
     }
 }
 // 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]);
     }
 }
 // Token: 0x06000FBA RID: 4026 RVA: 0x0004AAB4 File Offset: 0x00048CB4
 public static void SetDword(byte[] buff, ref int pos, uint dw)
 {
     ParseSerialize.SetDword(buff, ref pos, (int)dw);
 }