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