欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-08-22 22:30:50
本文实例讲述了c#保存listbox中数据到文本文件的方法。分享给大家供大家参考。具体实现方法如下: private void savelsttotxt(list...

本文实例讲述了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#程序设计有所帮助。