当前位置:  开发笔记 > 编程语言 > 正文

如何在C#中获取文件中的行数?

如何解决《如何在C#中获取文件中的行数?》经验,为你挑选了2个好方法。

我需要初始化2D数组,第一列是文件中的每一行.如何获取文件中的行数?



1> JoshBerke..:

你可以这样做:

System.IO.File.ReadAllLines("path").Length
编辑

正如Joe指出的那样,我遗漏了所有标准的错误处理,并且没有显示您将使用相同的数组来处理其余的代码.



2> Chris Dogget..:

来自MSDN:

int counter = 0;
string line;

// Read the file and display it line by line.
System.IO.StreamReader file = 
   new System.IO.StreamReader("c:\\test.txt");
while((line = file.ReadLine()) != null)
{
   Console.WriteLine (line);
   counter++;
}

file.Close();

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有