public bool ForceReflection { get; set; }
Public Property ForceReflection As Boolean
Get
Set
Dim instance As ParseOptions
Dim value As Boolean
value = instance.ForceReflection
instance.ForceReflection = value
public:
property bool ForceReflection {
bool get ();
void set (bool value);
}
This property only applies when you manually construct an instance of the CommandLineParser or CommandLineParser<T> class, or use one of the static CommandLineParser.Parse<T>(ParseOptions) methods. If you use the generated static IParser<TSelf> or IParserProvider<TSelf> interface methods on the command line arguments type, the generated parser is used regardless of the value of this property.