<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.5" />

LabelInstruction

namespace System.Diagnostics.Metrics { internal readonly struct LabelInstruction { public int SourceIndex { get; } public string LabelName { get; } public LabelInstruction(int sourceIndex, string labelName) { SourceIndex = sourceIndex; LabelName = labelName; } } }