How to Benchmark Your .NET Code Using BenchmarkDotNet image
August 31, 2019 by Chad
How to Benchmark Your .NET Code Using BenchmarkDotNet
Sometimes as developers we’re faced with making a certain piece of code perform faster. We often need to decide which piece of code performs the best. Benchmarking provides us concrete measurements between different pieces of code, so we can make verifiably correct decisions based on performance. In this post, I’ll introduce the BenchmarkDotNet library. This library simplifies the process of benchmarking our .NET code, and provides a bunch of cool features out of the box.
Read Article