Parser 构造函数

定义

重载

Parser()

使用默认 RootCommandParser 初始化 类的新实例。

Parser(Command)

使用指定的命令初始化 类的新实例 Parser

Parser(CommandLineConfiguration)

使用指定的配置初始化 类的新实例 Parser

Parser()

使用默认 RootCommandParser 初始化 类的新实例。

public:
 Parser();
public Parser ();
Public Sub New ()

适用于

Parser(Command)

使用指定的命令初始化 类的新实例 Parser

public:
 Parser(System::CommandLine::Command ^ command);
public Parser (System.CommandLine.Command command);
new System.CommandLine.Parsing.Parser : System.CommandLine.Command -> System.CommandLine.Parsing.Parser
Public Sub New (command As Command)

参数

command
Command

分析程序根命令。

适用于

Parser(CommandLineConfiguration)

使用指定的配置初始化 类的新实例 Parser

public:
 Parser(System::CommandLine::CommandLineConfiguration ^ configuration);
public Parser (System.CommandLine.CommandLineConfiguration configuration);
new System.CommandLine.Parsing.Parser : System.CommandLine.CommandLineConfiguration -> System.CommandLine.Parsing.Parser
Public Sub New (configuration As CommandLineConfiguration)

参数

configuration
CommandLineConfiguration

分析器语法和行为所基于的配置。

例外

适用于