使用Textwriter从ComboBox写入URL

时间:2013-04-10 12:13:22

标签: c# file combobox outlook save

我目前正在尝试将输入ComboBox(来自Outlook Addin)的网址写入txt文件,但作为初学者,我真的不知道如何去做。

我没有任何可以帮助你的代码片段所以我想我会简单地通过询问你可以在这件事上使用的一般方法来保持简单。 感谢您的所有帮助。

2 个答案:

答案 0 :(得分:0)

这是你在找什么?

string path=@"C:\Hello.txt";
TextWriter tsw = new StreamWriter(path,true);

    //Writing selected item of combobox to the file.
    tsw.WriteLine(comboBox1.Items[this.comboBox1.SelectedIndex].ToString());


    //Close the file.
    tsw.Close();

答案 1 :(得分:0)

试试这个:

将组合项添加到List并使用File将其写入文件

List<string> lst = new List<string>();
foreach (var text in comboBox1.Items)
{
     lst.Add((string)text);
}
File.WriteAllLines(@"c:\file.txt", lst.ToArray());

使用TextWriter

 using (TextWriter TW = new StreamWriter(@"c:\file.txt", true))
            {
                foreach (var text in comboBox1.Items)
                {
                    TW.WriteLine();
                }
            }