Parser.Parse(IReadOnlyList<String>, String) 方法

定义

分析参数列表。

public System.CommandLine.Parsing.ParseResult Parse (System.Collections.Generic.IReadOnlyList<string> arguments, string? rawInput = default);
member this.Parse : System.Collections.Generic.IReadOnlyList<string> * string -> System.CommandLine.Parsing.ParseResult
Public Function Parse (arguments As IReadOnlyList(Of String), Optional rawInput As String = Nothing) As ParseResult

参数

arguments
IReadOnlyList<String>

通常传递给程序的 方法的 Main 字符串数组。

rawInput
String

在提供拆分和标记化之前保留完整的命令行输入的值。 当从 Program.Main调用分析程序时,这通常不可用。 它主要用于通过 dotnet-suggest 工具计算完成。

返回

有关分析操作的详细信息。

适用于