Click or drag to resize

CommandLineArgumentDescription Property

Gets the description of the argument.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public string Description { get; }

Property Value

Type: String
The description of the argument.
Remarks

This property is used only when generating usage information using WriteUsage(TextWriter, Int32, WriteUsageOptions).

To set the description of an argument, apply the DescriptionAttribute attribute to the constructor parameter or the property that defines the argument.

See Also