CommandInfoMatchingPrefix Method
Checks whether the command's name or one of its aliases start with the specified prefix.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public string? MatchingPrefix(
string prefix
)
Public Function MatchingPrefix (
prefix As String
) As String
Dim instance As CommandInfo
Dim prefix As String
Dim returnValue As String
returnValue = instance.MatchingPrefix(prefix)
public:
String^ MatchingPrefix(
String^ prefix
)
- prefix String
- The prefix to check for.
String
The name or alias that matched the prefix, or
if no match was found.