Exemplo n.º 1
0
 public void SetText(int index, string msg)
 {
     if (index < 32)
     {
         this.RemoveAt(index);
         this[index] = msg.Length + 1;
         byte[] array = Class15.smethod_23(msg);
         this[index] = array.Length + 1;
         Array.Copy(array, 0, this.text, 0 + index * 144, Math.Min(array.Length, 144));
     }
 }