1 instantiation of CommandArgument
rzc (1)
CommandLine\CommandLineApplication.cs (1)
121var argument = new CommandArgument { Name = name, Description = description, MultipleValues = multipleValues };
14 references to CommandArgument
rzc (14)
CommandLine\CommandLineApplication.cs (13)
34Arguments = new List<CommandArgument>(); 50public readonly List<CommandArgument> Arguments; 104public CommandArgument Argument(string name, string description, bool multipleValues = false) 109public CommandArgument Argument(string name, string description, Action<CommandArgument> configuration, bool multipleValues = false) 111var lastArg = Arguments.LastOrDefault(); 121var argument = new CommandArgument { Name = name, Description = description, MultipleValues = multipleValues }; 140IEnumerator<CommandArgument> arguments = null; 476foreach (var arg in arguments) 595private class CommandArgumentEnumerator : IEnumerator<CommandArgument> 597private readonly IEnumerator<CommandArgument> _enumerator; 599public CommandArgumentEnumerator(IEnumerator<CommandArgument> enumerator) 604public CommandArgument Current
DiscoverCommand.cs (1)
30public CommandArgument Assemblies { get; }