string str = ""; foreach (object item in comboBox1.Items) { str += item.ToString() + "\r\n"; } System.IO.File.WriteAllText("c:\\a.txt", str);