Various .NET Benchmarks
A lot of times i was wondering what is the best performing code. In order to determine that i had to benchmark my code, but benchmarks are hard to write. Luckily there is a open source project that does this work perfectly good and very easy. The name of the library is BenchmarkDotNet and the documentation can be found here. The only thing you have to do is: Create a console application project (.NET/.NET Core) Install the nuget BenchmarkDotNet and it’s dependencies Always run in release mode! The following code is needed in the Program Main ...