CommandInfoMatchesName Method
Checks whether the command's name or aliases match the specified name.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public bool MatchesName(
string name,
IComparer<string>? comparer = null
)
Public Function MatchesName (
name As String,
Optional comparer As IComparer(Of String) = Nothing
) As Boolean
Dim instance As CommandInfo
Dim name As String
Dim comparer As IComparer(Of String)
Dim returnValue As Boolean
returnValue = instance.MatchesName(name,
comparer)
public:
bool MatchesName(
String^ name,
IComparer<String^>^ comparer = nullptr
)
- name String
- The name to check for.
- comparer IComparerString (Optional)
-
The IComparerT to use for the comparisons, or
to use the default comparison, which is OrdinalIgnoreCase.
Boolean if the
name matches the
Name
property or any of the items in the
Aliases property.