Click or drag to resize

CommandLineParserDescription Property

Gets a description that is used when generating usage information.

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 command line application. The default value is an empty string ("").
Remarks

This description will be added to the usage returned by the WriteUsage(TextWriter, Int32, WriteUsageOptions) property. This description can be set by applying the DescriptionAttribute to the command line arguments type.

See Also