CommandLineArgumentShortAliases Property

Gets the alternative short names for this command line argument.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public ReadOnlyCollection<char>? ShortAliases { get; }

Property Value

ReadOnlyCollectionChar
A list of alternative short names for this command line argument, or an empty collection if none were specified.

Remarks

If the Mode property is not LongShort, or the HasShortName property is , this property will always return an empty collection.

See Also