我目前正在尝试将输入ComboBox
(来自Outlook Addin)的网址写入txt文件,但作为初学者,我真的不知道如何去做。
我没有任何可以帮助你的代码片段所以我想我会简单地通过询问你可以在这件事上使用的一般方法来保持简单。 感谢您的所有帮助。
答案 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();
}
}