ParseOptionsArgumentNameComparer Property

Gets or set the IComparerT to use to compare argument names.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public IComparer<string>? ArgumentNameComparer { get; set; }

Property Value

IComparerString
The IComparerT to use to compare the names of named arguments, or to use the one determined using the CaseSensitive property, or if the ParseOptionsAttribute is not present, OrdinalIgnoreCase. The default value is .

Remarks

If not , this property overrides the value of the CaseSensitive property.

See Also