CommandLineParserGetDefaultArgumentNamePrefixes Method

Gets the default argument name prefixes for the current platform.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public static string[] GetDefaultArgumentNamePrefixes()

Return Value

String
An array containing the default prefixes for the current platform.

Remarks

The default prefixes for each platform are:

PlatformPrefixes
Windows'-' and '/'
Other'-'

If the Mode property is LongShort, these prefixes will be used for short argument names. The DefaultLongArgumentNamePrefix constant is the default prefix for long argument names regardless of platform.

See Also