1 write to _unmatchedTokens
System.CommandLine (1)
ParseResult.cs (1)
58
_unmatchedTokens
= unmatchedTokens is null ? Array.Empty<Token>() : unmatchedTokens;
2 references to _unmatchedTokens
System.CommandLine (2)
ParseResult.cs (2)
108
=>
_unmatchedTokens
.Count == 0 ? Array.Empty<string>() :
_unmatchedTokens
.Select(t => t.Value).ToArray();