资源说明:本文实例讲述了C#读取文本文件到listbox组件的方法。分享给大家供大家参考。具体实现方法如下:
private void AddTxtToLst(string path,ListBox lst)
{
StreamReader file = new StreamReader(path,Encoding.Default);
string s = ;
while (s != null)
{
s = file.ReadLine();
if (!string.IsNullOrEmpty(s))
lst.Items.Add(s);
}
file.Close();
}
希
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。