Processing dotnet/runtime#121280 (comment) command:
Command
-aws_arm -profiler
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
public class Benchmark
{
static readonly object SyncRoot = new();
[Benchmark]
public void Object()
{
lock (SyncRoot)
DoWork();
}
}
(EgorBot will reply in this issue)