我正在使用 C# 读取其中包含换页符的文本文件。
当我遇到以换页符开头的行时,我需要做一些事情。我该如何检查这个?
例子:
StreamReader reader = File.OpenText(filePath);
while (!reader.EndOfStream)
{
string currentLine = reader.ReadLine();
//check currentLine to see if it begins with a form feed character
}