CommandLineParserGetShortArgument Method
Gets a command line argument by short name.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public CommandLineArgument? GetShortArgument(
char shortName
)
Public Function GetShortArgument (
shortName As Char
) As CommandLineArgument
Dim instance As CommandLineParser
Dim shortName As Char
Dim returnValue As CommandLineArgument
returnValue = instance.GetShortArgument(shortName)
public:
CommandLineArgument^ GetShortArgument(
wchar_t shortName
)
- shortName Char
- The short name of the argument.
CommandLineArgumentThe
CommandLineArgument instance containing information about
the argument, or
if the argument was not found.