UsageWriterWriteArgumentName Method

Writes the name of an argument.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
protected virtual void WriteArgumentName(
	string argumentName,
	string prefix
)

Parameters

argumentName  String
The name of the argument.
prefix  String
The argument name prefix; if using ParsingModeLongShort, this may vary depending on whether the name is a short or long name.

Remarks

The default implementation returns the prefix followed by the name, e.g. "-Name".

This method is called by the base implementation of the WriteArgumentSyntax(CommandLineArgument) method and the WritePositionalArgumentName(String, String, NullableChar) method.

See Also