Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 LINQ-to-SQL 查询来生成使用StringBuilder. 我的 LINQ 查询将其数据存储在一个名为 的变量中Entrants,并按设计生成一个数据列表。
StringBuilder
Entrants
我知道这真的很低级,但是如何设置foreach循环以使我StringBuilder遍历 var 中的每组数据Entrants?
foreach
foreach ([what goes here?] in Entrants) { do something }
代码中的占位符应用于指定单个参赛者的名称:
foreach (var entrant in Entrants) { Console.WriteLine(entrant); }
如果没有该名称,您将无法引用循环主体中的参与者。你无法打印它。
希望我正确理解了这个问题。