how to call last string from text file csharp

Code Example - how to call last string from text file csharp

                
                        If the file is not too large, just read the lines and pick the last:

string lastLine = File.ReadLines("pathToFile").LastOrDefault();