保存listbox里面的东西到记事本,但是要用类的方法去封装的C#代码
为什么你在读取的时候好像没有调用到类啊!对不起,我是个刚刚接触C#的人有很多问题都不会所有再次麻烦你!
using System.IO;
//写入
StreamWriter sw = new StreamWriter( @"C:\temp123.txt");
sw.WriteLine("----------------hello----------------");
sw.WriteLine("内容");
sw.WriteLine("----------------hello----------------");
sw.Flush();
sw.Close();
//读取
System.IO.StreamReader st;
st = new System.IO.StreamReader(@"C:\temp123.txt", System.Text.Encoding.UTF8);//UTF8为编码
this.textBox1.Text = st.ReadToEnd();
StreamWriter 序列化对象