CommandLineParser.GetDefaultArgumentNamePrefixes Method

Gets the default argument name prefixes for the current platform.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public static ImmutableArray<string> GetDefaultArgumentNamePrefixes()

Return Value

ImmutableArray<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 ParsingMode.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