C# benchmarking with Benchmark.net
Benchmarking, especially micro benchmarking is a pretty complex topic. And the .net runtime makes things even more complicated. You have your usual problems like making sure your code does the same things in each test, and that your timing is accurate. But .net also introduces JITing, and runtime optimizations. So you could start off writing […]
C# benchmarking with Benchmark.net Read More »