CommandManager(Assembly, CommandOptions) Constructor
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public CommandManager(
Assembly assembly,
CommandOptions? options = null
)
Public Sub New (
assembly As Assembly,
Optional options As CommandOptions = Nothing
)
Dim assembly As [Assembly]
Dim options As CommandOptions
Dim instance As New CommandManager(assembly,
options)
public:
CommandManager(
Assembly^ assembly,
CommandOptions^ options = nullptr
)
Parameters
- assembly Assembly
- The assembly containing the commands.
- options CommandOptions (Optional)
-
The options to use for parsing and usage help, or to use
the default options.
Once a command is created, the
options instance may be modified
with the options of the
ParseOptionsAttribute attribute applied to the
command class. Be aware of this if reusing the same
CommandManager or
CommandOptions instance to create multiple commands.