ParserConfiguration.EnablePosixBundling Property

Definition

Enables the parser to recognize and expand POSIX-style bundled options.

public:
 property bool EnablePosixBundling { bool get(); void set(bool value); };
public bool EnablePosixBundling { get; set; }
member this.EnablePosixBundling : bool with get, set
Public Property EnablePosixBundling As Boolean

Property Value

Remarks

POSIX conventions recommend that single-character options be allowed to be specified together after a single - prefix. When EnablePosixBundling is set to true, the following command lines are equivalent:

> myapp -a -b -c
> myapp -abc

If an argument is provided after an option bundle, it applies to the last option in the bundle. When EnablePosixBundling is set to true, all of the following command lines are equivalent:

> myapp -a -b -c arg
> myapp -abc arg
> myapp -abcarg

Applies to