ParserSettings Constructor (Boolean, Boolean, TextWriter) |
Initializes a new instance of the
ParserSettings class,
setting case comparison, mutually exclusive behavior and help output option.
Namespace: X3Platform.CommandLineAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic ParserSettings(
bool caseSensitive,
bool mutuallyExclusive,
TextWriter helpWriter
)
public:
ParserSettings(
bool caseSensitive,
bool mutuallyExclusive,
TextWriter^ helpWriter
)
Parameters
- caseSensitive
- Type: SystemBoolean
If set to true, parsing will be case sensitive. - mutuallyExclusive
- Type: SystemBoolean
If set to true, enable mutually exclusive behavior. - helpWriter
- Type: System.IOTextWriter
Any instance derived from TextWriter,
default Error. Setting this argument to null, will disable help screen.
See Also