public CommandLineParser(
Type argumentsType,
ParseOptions? options = null
)
Public Sub New (
argumentsType As Type,
Optional options As ParseOptions = Nothing
)
Dim argumentsType As Type
Dim options As ParseOptions
Dim instance As New CommandLineParser(argumentsType,
options)
public:
CommandLineParser(
Type^ argumentsType,
ParseOptions^ options = nullptr
)
If the options parameter is not , the instance passed in will be modified to reflect the options from the arguments class's ParseOptionsAttribute attribute, if it has one.
Certain properties of the ParseOptions class can be changed after the CommandLineParser class has been constructed, and still affect the parsing behavior. See the Options property for details.
Some of the properties of the ParseOptions class, like anything related to error output, are only used by the static ParseT(ParseOptions) class and are not used here.
ArgumentNullException | argumentsType is . |
NotSupportedException | The CommandLineParser cannot use argumentsType as the command line arguments type, because it violates one of the rules concerning argument names or positions, or has an argument type that cannot be parsed. |