public string GetParserAmbiguousPrefixAliasUsage(
CommandLineParser parser,
IEnumerable<string> possibleMatches,
int maximumLineLength = 0
)
Public Function GetParserAmbiguousPrefixAliasUsage (
parser As CommandLineParser,
possibleMatches As IEnumerable(Of String),
Optional maximumLineLength As Integer = 0
) As String
Dim instance As UsageWriter
Dim parser As CommandLineParser
Dim possibleMatches As IEnumerable(Of String)
Dim maximumLineLength As Integer
Dim returnValue As String
returnValue = instance.GetParserAmbiguousPrefixAliasUsage(parser,
possibleMatches, maximumLineLength)
public:
String^ GetParserAmbiguousPrefixAliasUsage(
CommandLineParser^ parser,
IEnumerable<String^>^ possibleMatches,
int maximumLineLength = 0
)
If no writer was passed to the UsageWriter(LineWrappingTextWriter, TriState) constructor, this method will create a LineWrappingTextWriter for the standard output stream. If color usage wasn't explicitly enabled, it will be enabled if the output supports it according to VirtualTerminalEnableColor(StandardStream).
This method calls the WriteParserAmbiguousPrefixAliasUsageCore(IEnumerableString) method to create the usage help text.
ArgumentNullException | parser or possibleMatches is . |