TSelf Parse(
string[] args,
ParseOptions? options = null
)
Function Parse (
args As String(),
Optional options As ParseOptions = Nothing
) As TSelf
Dim args As String()
Dim options As ParseOptions
Dim returnValue As TSelf
returnValue = IParser.Parse(args, options)
TSelf Parse(
array<String^>^ args,
ParseOptions^ options = nullptr
)
This method is typically generated for a class that defines command line arguments by the GeneratedParserAttribute attribute.
NotSupportedException | The CommandLineParserT cannot use type TSelf as the command line arguments type, because it violates one of the rules concerning argument names or positions. Even when the parser was generated using the GeneratedParserAttribute class, not all those rules can be checked at compile time. |