4 instantiations of ChildSymbolList
System.CommandLine (4)
Command.cs (3)
62
public IList<Argument> Arguments => _arguments ??=
new
(this);
72
public IList<Option> Options => _options ??=
new
(this);
79
public IList<Command> Subcommands => _subcommands ??=
new
(this);
RootCommand.cs (1)
35
Directives = new
ChildSymbolList
<Directive>(this)
3 references to ChildSymbolList
System.CommandLine (3)
Command.cs (3)
28
private
ChildSymbolList
<Argument>? _arguments;
29
private
ChildSymbolList
<Option>? _options;
30
private
ChildSymbolList
<Command>? _subcommands;