📌  相关文章
📜  如何从文本文件中调用最后一个字符串 C# 代码示例

📅  最后修改于: 2022-03-11 14:49:09.641000             🧑  作者: Mango

代码示例1
If the file is not too large, just read the lines and pick the last:

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