Click or drag to resize
ParserSettingsIgnoreUnknownArguments Property
Gets or sets a value indicating whether the parser shall move on to the next argument and ignore the given argument if it encounter an unknown arguments

Namespace: X3Platform.CommandLine
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public bool IgnoreUnknownArguments { get; set; }

Property Value

Type: Boolean
true to allow parsing the arguments with different class options that do not have all the arguments.
Remarks
This allows fragmented version class parsing, useful for project with add-on where add-ons also requires command line arguments but when these are unknown by the main program at build time.
See Also