1 write to _subcommands
System.CommandLine (1)
Command.cs (1)
79
public IList<Command> Subcommands =>
_subcommands
??= new(this);
2 references to _subcommands
System.CommandLine (2)
Command.cs (2)
81
internal bool HasSubcommands =>
_subcommands
is not null &&
_subcommands
.Count > 0;