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);