[C#]统计文本文件txt中的行数(快速读取)

快速统计文本文件中的行数( StreamReader.ReadLine() ):

测试代码如下:

 1        //读取txt文件中总行数的方法
 2         public static int requestMethod(String _fileName)
 3         {
 4             Stopwatch sw = new Stopwatch();
 5             var path = _fileName;
 6             int lines = 0;
 7 
 8             //按行读取
 9             sw.Restart();
10             using (var sr = new StreamReader(path))
11             {
12                 var ls = "";
13                 while ((ls = sr.ReadLine()) != null)
14                 {
15                     lines++;
16                 }
17             }
18             sw.Stop();
19             return lines;
20         }

 

  

转载于:https://www.cnblogs.com/ttkl/p/7640199.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值