我正在尝试读取我在此处找到的文件的行数(stackoverflow),读取大文件中行数的最佳方法是使用以下代码:
int count = System.IO.File.ReadLines(file).Count();
但是,我不能让它编译。有谁知道是什么问题?
错误 5
'System.Collections.Generic.IEnumerable<string>'
不包含“计数”的定义,并且找不到接受第一个类型参数的扩展方法“计数”'System.Collections.Generic.IEnumerable<string>'
(您是否缺少 using 指令或程序集引用?)
谢谢, 埃亚尔