1 write to _values
System.CommandLine (1)
Parsing\DirectiveResult.cs (1)
35internal void AddValue(string value) => (_values ??= new()).Add(value);
2 references to _values
System.CommandLine (2)
Parsing\DirectiveResult.cs (2)
23public IReadOnlyList<string> Values => _values is null ? Array.Empty<string>() : _values;