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.
我有以下课程:
public class Words { public string word; public bool correct; }
我有一个单词数组。
Words[] words;
我希望计算我的数组中有多少元素将属性correct设置为 true。
correct
最有效的方法是什么?
使用LINQ
words.Where(w=>w.correct);
这应该可以过滤。
但如果你只想数:
words.Count(w=>w.correct);