public CommandLineArgument? GetArgument(
string name
)
Public Function GetArgument (
name As String
) As CommandLineArgument
Dim instance As CommandLineParser
Dim name As String
Dim returnValue As CommandLineArgument
returnValue = instance.GetArgument(name)
public:
CommandLineArgument^ GetArgument(
String^ name
)
If the Mode property is ParsingModeLongShort, this uses the long name and long aliases of the argument.
This method only uses the actual names and aliases; it does not consider auto prefix aliases regardless of the value of the ParseOptionsAutoPrefixAliases property.
ArgumentNullException | name is . |