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.CommandLineAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic bool IgnoreUnknownArguments { get; set; }
public:
property bool IgnoreUnknownArguments {
bool get ();
void set (bool value);
}
Property Value
Type:
Booleantrue 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