string output = "";
ArrayList arrayList = new ArrayList();
arrayList.Add("one");
arrayList.Add("two");
arrayList.Add("three");
arrayList.OfType<string>().ToList().ForEach(k => output += k + ",");
TextBox1.Text = output;