Need to get just last line from big log file. What is the best way to do that?
Or you can do it two line (.Net 4 only)
var lines = File.ReadLines(path); string line = lines.Last();