CommandLineParser.LongArgumentNamePrefix Property

Gets the prefix to use for long argument names.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public string? LongArgumentNamePrefix { get; }

Property Value

String
The prefix for long argument names, or null if the Mode property is not ParsingMode.LongShort.

Remarks

The long argument prefix is only used if the Mode property is ParsingMode.LongShort. See ArgumentNamePrefixes to get the prefixes for short argument names, or for argument names if the Mode property is ParsingMode.Default.

See Also