System.Collections.ArrayList tmp = new ArrayList();
tmp.Add(111);
tmp.Add(2222);
int[] tmpint = (int[])tmp.ToArray(System.Type.GetType("System.Int32"));
this.TextBox1.Text = tmpint[0].ToString();