gpt4 book ai didi

c# - 在同一语句中检查流的空值和结尾

转载 作者:太空宇宙 更新时间:2023-11-03 20:09:47 25 4
gpt4 key购买 nike

while ((line = sr.ReadLine()) != null && !sr.EndOfStream)

这是行不通的。它实际上一直在循环,我得到一个异常,因为“line”为空,并且已经到达 EndofStream。有什么想法吗?

最佳答案

您可以简单地使用以下代码,ReadLine 将在到达文件末尾时返回 null,因此不需要检查 EndOfStream

while ((line = streamReader.ReadLine()) != null)
{
// do stuff
}

MSDN :

Return Value Type: System.String The next line from the input stream, or null if the end of the input stream is reached.

关于c# - 在同一语句中检查流的空值和结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20763353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com