私は現在、ComboBox
(Outlook アドインから) に入力された URL を txt ファイルに書き込もうとしていますが、初心者なので、その方法がよくわかりません。
とにかくあなたを助けることができるコードスニペットを持っていないので、この問題で使用できる一般的なアプローチをお願いすることで、単純に保つと思います. 皆様のご協力に感謝いたします。
これはあなたが探しているものですか?
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();
これを試して:
コンボ アイテムを に追加し、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();
}
}