前言
最近在讀一本電子書:LINQ Succinctly
內容從LINQ觀念到實作都有介紹,以新手來說一百頁左右的內容算很好上手,其中內容有一段敘述引起我的好奇
Using Any() instead of Count() != 0 usually conveys the intent of the code better, and in some circumstances, can perform better.
因為本人過往在撰寫程式時,習慣使用Count()來判斷集合中是否有物件,所以就來測試看看