UsageWriterWriteParserAmbiguousPrefixAliasUsageCore Method

Writes a list of possible matches when the user used an argument name that was a prefix alias for multiple arguments.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
protected virtual void WriteParserAmbiguousPrefixAliasUsageCore(
	IEnumerable<string> possibleMatches
)

Parameters

possibleMatches  IEnumerableString
The list of possible argument names or aliases.

Remarks

The default implementation writes a list of possible matches, preceded by a header. The argument names will be written using the ArgumentDescriptionColor and by calling the WriteArgumentNameForDescription(String, String) method. Finally, it calls the WriteMoreInfoMessage method.

See Also