ParseOptionsArgumentNameComparison Property

Gets or set the type of string comparison to use for argument names.

Definition

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

Property Value

NullableStringComparison
One of the values of the StringComparison enumeration, or to use the one determined using the ParseOptionsAttributeCaseSensitive property, or if the ParseOptionsAttribute is not present, StringComparisonOrdinalIgnoreCase. The default value is .

Remarks

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

See Also