问题描述
我只读30如何循环读取文件里面的最后一条记录
解决方案
解决方案二:
stringfn=@"C:test.txt";StreamReadersr=newStreamReader(fn);stringst=string.Empty;while(!sr.EndOfStream){st=sr.ReadLine();}
解决方案三:
Dimlines=System.IO.File.ReadAllLines("path")Dimtxt=lines(lines.Length-1)
时间: 2024-12-04 04:54:50