We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c7301 commit 21da339Copy full SHA for 21da339
src/BenchmarkDotNet.Annotations/Attributes/ParamsAttribute.cs
@@ -5,7 +5,7 @@ namespace BenchmarkDotNet.Attributes
5
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
6
public class ParamsAttribute : PriorityAttribute
7
{
8
- public object?[] Values { get; }
+ public object?[] Values { get; protected set; }
9
10
// CLS-Compliant Code requires a constructor without an array in the argument list
11
public ParamsAttribute() => Values = new object[0];
0 commit comments