ParseOptionsAttributeCaseSensitive Property

Gets or sets a value that indicates whether argument names are treated as case sensitive.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public bool CaseSensitive { get; set; }

Property Value

Boolean
to indicate that argument names must match case exactly when specified, or to indicate the case does not need to match. The default value is

Remarks

When , the CommandLineParser will use Ordinal for command line argument comparisons; otherwise, it will use OrdinalIgnoreCase.

This value can be overridden by the ArgumentNameComparer property.

See Also