/// <summary> /// Initializes a new instance of the <see cref="T:System.Object" /> class. /// </summary> public CommandLineOptions(Assembly assembly, HelpOptionFlag helpOptionFlags = HelpOptionFlag.All) : this(new AssemblyMetaInfo(assembly), helpOptionFlags) { }
public CommandLineOptions(AssemblyMetaInfo assemblyInfo, HelpOptionFlag helpOptionFlags = HelpOptionFlag.All) { this.assemblyInfo = assemblyInfo; this.helpOptionFlags = helpOptionFlags; }
/// <summary> /// Initializes a new instance of the <see cref="T:System.Object" /> class. /// </summary> public CommandLineOptions(HelpOptionFlag helpOptionFlags) : this(Assembly.GetEntryAssembly(), helpOptionFlags) { }