先不看你对每行是怎么处理的,只看怎么获取每行,代码也显得冗余和容易出错
没必要定义FileStream,没必要使用Seek
while (strLine != null)永远不可能为null,最多为空字符串
参考代码如下
StreamReader sr=new StreamReader(@"c:\1.txt")while (!sr.EndOfStream)
{
string line = sr.ReadLine()
//处理
}
欢迎分享,转载请注明来源:内存溢出
先不看你对每行是怎么处理的,只看怎么获取每行,代码也显得冗余和容易出错
没必要定义FileStream,没必要使用Seek
while (strLine != null)永远不可能为null,最多为空字符串
参考代码如下
StreamReader sr=new StreamReader(@"c:\1.txt")while (!sr.EndOfStream)
{
string line = sr.ReadLine()
//处理
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)