Command.Add 方法

定义

重载

Add(Argument)

将 添加到 Argument 命令。

Add(Command)

将子命令添加到 命令。

Add(Option)

将 添加到 Option 命令。

Add(Argument)

将 添加到 Argument 命令。

public:
 void Add(System::CommandLine::Argument ^ argument);
public void Add (System.CommandLine.Argument argument);
member this.Add : System.CommandLine.Argument -> unit
Public Sub Add (argument As Argument)

参数

argument
Argument

要添加到命令的参数。

适用于

Add(Command)

将子命令添加到 命令。

public:
 void Add(System::CommandLine::Command ^ command);
public void Add (System.CommandLine.Command command);
member this.Add : System.CommandLine.Command -> unit
Public Sub Add (command As Command)

参数

command
Command

要添加到命令的子命令。

注解

命令可以嵌套到任意深度。

适用于

Add(Option)

将 添加到 Option 命令。

public:
 void Add(System::CommandLine::Option ^ option);
public void Add (System.CommandLine.Option option);
member this.Add : System.CommandLine.Option -> unit
Public Sub Add (option As Option)

参数

option
Option

要添加到命令的选项。

适用于