CreateShellCommandOptionsArgumentNameComparer Property |
Gets or set the
IComparerT to use to compare argument names.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic IComparer<string> ArgumentNameComparer { get; set; }
Public Property ArgumentNameComparer As IComparer(Of String)
Get
Set
Dim instance As CreateShellCommandOptions
Dim value As IComparer(Of String)
value = instance.ArgumentNameComparer
instance.ArgumentNameComparer = value
public:
property IComparer<String^>^ ArgumentNameComparer {
IComparer<String^>^ get ();
void set (IComparer<String^>^ value);
}
Property Value
Type:
IComparerString
The
IComparerT to use to compare the names of named arguments. The default value is
OrdinalIgnoreCase.
See Also