Problem: Very very, large file I need to parse line by line to get 3 values from each line. Everything works but it takes a long time to parse through the whole file. Is it poss
Memory Mapped Files and Task Parallel Library for help.
IEnumerable
, basically to abstract a set of not parsed linesParse(IEnumerable)
as a Task actionSee Pipelines pattern on MSDN
Must say this solution is for .NET Framework >=4