CommandManagerOptions Property
            Gets the options used by this instance.
            
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
public CommandOptions Options { get; }
Public ReadOnly Property Options As CommandOptions
	Get
Dim instance As CommandManager
Dim value As CommandOptions
value = instance.Options
public:
property CommandOptions^ Options {
	CommandOptions^ get ();
}
Property Value
CommandOptions
            An instance of the 
CommandOptions class.
            
 
              Modifying the options will change the way this instance behaves.
            
              Once a command is created, the 
ParseOptions instance may be modified
              with the options of the 
ParseOptionsAttribute attribute applied to the
              command class. Be aware of this if reusing the same 
CommandManager or
              
CommandOptions instance to create multiple commands.