Answers for "c# counting lines"

C#
3

c# counting lines

public long CountLinesLINQ(FileInfo file)  
    => File.ReadLines(file.FullName).Count();
Posted by: Guest on May-27-2020

C# Answers by Framework

Browse Popular Code Answers by Language