gpt4 book ai didi

c# - 如何循环 TextReader 中的行?

转载 作者:可可西里 更新时间:2023-11-01 08:30:11 27 4
gpt4 key购买 nike

我如何循环遍历 TextReader 中的行来源?

我试过了

foreach (var line in source)

但是报错

foreach statement cannot operate on variables of type 'System.IO.TextReader' because 'System.IO.TextReader' does not contain a public definition for 'GetEnumerator'

最佳答案

string line;
while ((line = myTextReader.ReadLine()) != null)
{
DoSomethingWith(line);
}

关于c# - 如何循环 TextReader 中的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12687453/

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