Open
Description
Processing dotnet/runtime#116054 (comment) command:
Command
-amd -arm
using System.Collections.Generic;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
public class Bench
{
private static Dictionary<string, int> Dictionary =
new()
{
{ "1", 1 },
{ "222", 2 },
{ "3333", 3 },
{ "44444", 4 },
};
[Benchmark]
[Arguments("44444")]
public int Lookup(string key) => Dictionary[key];
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels