读一个文本文件
这是一个读取文本文件的编程,点击Button,读到的每一行就被加到列表框中去,
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using
namespace ReadTextFile
{
public partial class Form1 : Form
{
public Form1()
{
//下面的代码是为了满足Windows Form设计的要求
InitializeComponent();
//请在InitializeComponent后添加任意构造函数代码
}
protected void button1_Click(object sender, EventArgs e)
{
File f = new File(@"D:\C#电子书\橙子.txt");
StreamReader strm = f.OpenText();
string s;
s = strm.ReadLine();
while (s != null)
{
listBox1.Items.Add(s);
s = strm.ReadLine();
}
strm.Close();
}
}
}
但是出现错误,说无法声明静态类型“”的变量
无法创建静态类“”实例
“OpenText”方法没有任何重载采用“0”个参数。
请大侠帮忙解决一下!新手上路,不太懂,谢谢!