可以做到啊,我们分接下就好了。
1.从txt文件中读取数据,
2.数据对比
3.返回。
我相信后两步你应该都知道的吧。这是我曾经写过的一断,打开文件的代码,还有问题找我好了gududexuan@
StreamReader sr = new StreamReader(openFileDialog1.FileName, Encoding.Default);
this.lastsavename = openFileDialog1.FileName;
this.Text = Path.GetFileNameWithoutExtension(this.lastsavename) + "-记事本";
textBox1.Text = sr.ReadToEnd();
sr.Close();