当前位置:主页 > 软件编程 > .NET代码 >

C#保存listbox中数据到文本文件的方法

时间:2020-10-27 12:13:40 | 栏目:.NET代码 | 点击:

本文实例讲述了C#保存listbox中数据到文本文件的方法。分享给大家供大家参考。具体实现方法如下:

private void SaveLstToTxt(ListBox lst)
{
 sfd.Filter = "(*.txt)|*.txt";
 if (sfd.ShowDialog() == DialogResult.OK)
 {
  string sPath = sfd.FileName;
  FileStream fs = new FileStream(sPath, FileMode.Create);
  StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
  int iCount = lst.Items.Count - 1;
  for (int i = 0; i <= iCount; i++)
  {
   sw.WriteLine(lst.Items[i].ToString());
  }
  sw.Flush();
  sw.Close();
  fs.Close();
 }
}

希望本文所述对大家的C#程序设计有所帮助。

您可能感兴趣的文章:

相关文章