Jeroen Vannevel

Results 53 comments of Jeroen Vannevel

Okay, I'll escalate priority if there's specific interest for it

If you have a code snippet like this ```cs async void DoThing() { Console.WriteLine("Did a thing"); } ``` SharpSource suggests the following code fix: ![image](https://user-images.githubusercontent.com/2777107/190274229-aa870fc3-730e-4fbf-bb93-0c13d3b6b305.png) This turns it into ```cs...

I investigated and it's actually the opposite 🤯 A quick benchmark shows me that `.First()` is actually 3x as slow as `.Where().First()`. ``` using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; namespace MyBenchmarks; [MemoryDiagnoser]...