我正在使用File.ReadAllLines()
读取文本文件,但我也可以使用file . readlines()。读取文件后,下一步是根据结果创建一个列表。在我的列表中,我需要获得文本文件中每个条目/行的行号。这能做到吗?如何?对于我的最终结果,我需要我的列表有一个索引属性。
这是我得到的:
var file = System.IO.File.ReadAllLines(path);
var lineInfo = file.AsParallel().AsOrdered()
.Select(line => new
{
// index = **** I WANT THE INDEX/ROWNUMBER HERE ****
lineType = line.Substring(0, 2),
winID = line.Substring(11, 9),
effectiveDate = line.Substring(0, 2) == EmployeeLine ? line.Substring(237, 8).ToDateTimeExact("yyyyMMdd") : null,
line
})
.ToList()
.AsParallel();
Select
有一个覆盖提供索引。
因此你应该能够改变你的选择来包含它:
var lineInfo = file.AsParallel().AsOrdered()
.Select((line, index) => new
{
....
}
})
.ToList()
.AsParallel();
然而,正如Servy在他的评论中指出的那样,如果你要加载整个文件,然后再遍历它,那么你也可以以流式方式处理每一行。
对于学习框架的新内容总是很有用的
你可以试试这个:
.Select((line,index) => new
{
Index = index
lineType = line.Substring(0, 2),
// the rest of your code.
})
这里还有一个链接,其中使用了这个。