Search Results

1
vote

c# determine the number of lines within a text file

If by easy you mean a lines of code that are easy to decipher but per chance inefficient? string[] lines = System.IO.File.RealAllLines($filename); int cnt = lines.Count(); That's pr …