What’s the fastest way to read a text file line-by-line?
To find the fastest way to read a file line by line you will have to do some benchmarking. I have done some small tests on my computer but you cannot expect that my results apply to your environment. Using StreamReader.ReadLine This is basically your method. For some reason you set the buffer size to … Read more