OptionExtensions.Parse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Parse(Option, String) |
使用選項剖析命令列字串值。 |
Parse(Option, String[]) |
使用選項剖析命令列字串值。 |
Parse(Option, String)
使用選項剖析命令列字串值。
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Parsing::ParseResult ^ Parse(System::CommandLine::Option ^ option, System::String ^ commandLine);
public static System.CommandLine.Parsing.ParseResult Parse (this System.CommandLine.Option option, string commandLine);
static member Parse : System.CommandLine.Option * string -> System.CommandLine.Parsing.ParseResult
<Extension()>
Public Function Parse (option As Option, commandLine As String) As ParseResult
參數
- option
- Option
用來剖析命令行輸入的選項。
- commandLine
- String
要剖析的命令行字串,可以包含空格和引號,相當於可以輸入終端機的內容。
傳回
描述剖析作業結果的剖析結果。
備註
命令行字串輸入會分割成令牌,就像已在命令行上傳遞一樣。
適用於
Parse(Option, String[])
使用選項剖析命令列字串值。
public:
[System::Runtime::CompilerServices::Extension]
static System::CommandLine::Parsing::ParseResult ^ Parse(System::CommandLine::Option ^ option, cli::array <System::String ^> ^ args);
public static System.CommandLine.Parsing.ParseResult Parse (this System.CommandLine.Option option, string[] args);
static member Parse : System.CommandLine.Option * string[] -> System.CommandLine.Parsing.ParseResult
<Extension()>
Public Function Parse (option As Option, args As String()) As ParseResult
參數
- option
- Option
用來剖析命令行輸入的選項。
- args
- String[]
要剖析的字串選項。
傳回
描述剖析作業結果的剖析結果。