While crafting my conference session inspired by my code performance book, I delved into the performance implications of employing LINQ for collection queries. I pondered whether LINQ consistently outshines traditional loops such as for() or foreach(). The verdict? It depends on the nature of the query and the specific elements being sought.
Benchmark Results
The benchmark results reveal intriguing findings. In the task of searching a collection for items matching a specified query, utilizing a traditional LINQ API demonstrates better performance. It surpasses the foreach() loop by a factor of 1.95 and outperforms the LAMBDA efficiency by 2.75 times.


To determine whether a
foreach()loop offers better performance in your code, the definitive approach is to benchmark the method.
Pick up any books by David McCarter by going to Amazon.com: http://bit.ly/RockYourCodeBooks
Make a one-time donation
Make a monthly donation
Make a yearly donation
Choose an amount
Or enter a custom amount
Your contribution is appreciated.
Your contribution is appreciated.
Your contribution is appreciated.
DonateDonate monthlyDonate yearlyIf you liked this article, please buy David a cup of Coffee by going here: https://www.buymeacoffee.com/dotnetdave
© The information in this article is copywritten and cannot be preproduced in any way without express permission from David McCarter.
Discover more from dotNetTips.com
Subscribe to get the latest posts sent to your email.

