エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Which method performs better: .Any() vs .Count() > 0?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Which method performs better: .Any() vs .Count() > 0?
In the System.Linq namespace, we can now extend our IEnumerable's to have the Any() and Count() e... In the System.Linq namespace, we can now extend our IEnumerable's to have the Any() and Count() extension methods. I was told recently that if I want to check that a collection contains one or more items inside it, I should use the .Any() extension method instead of .Count() > 0 because the .Count() extension method has to iterate through all the items. Secondly, some collections have a property (

