Skip to content

Instantly share code, notes, and snippets.

View jasdefer's full-sized avatar

Justus Bonz jasdefer

  • Desior GmbH
  • Hamburg
View GitHub Profile
@jasdefer
jasdefer / SwitchBenchmarks.cs
Last active January 9, 2025 13:30
A benchmark to test the performance of integer vs string switch statements.
using BenchmarkDotNet.Attributes;
namespace AgentMobilityNet.Benchmark;
[MemoryDiagnoser]
public class SwitchBenchmarks
{
[Params(1,100, 10000)]
public int Size { get; set; }