CommandLineArgumentDefaultValue Property

Gets the default value for an argument.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public Object? DefaultValue { get; }

Property Value

Object
The default value of the argument.

Remarks

The default value of an argument defined by a constructor parameter is specified by the default value of that parameter. For an argument defined by a property, the default value is set by the DefaultValue property.

This value is only used if IsRequired is .

See Also