private void GacUtil() { GacUtilOptions options = new GacUtilOptions(); GacUtil u = new GacUtil(options); options.Host = Options.Host; options.Rows = Options.Rows; options.SourceDir = Options.SourceDir; options.TextInfoBox = Options.TextInfoBox; if (Options.rbGacInstallChecked) options.rbInstallChecked = true; else if (Options.rbGacRemoveChecked) options.rbUninstallChecked = true; u.Go(); }
private void GacUtil() { GacUtilOptions options = new GacUtilOptions(); GacUtil u = new GacUtil(options); options.Host = Options.Host; options.Rows = Options.Rows; options.SourceDir = Options.SourceDir; options.TextInfoBox = Options.TextInfoBox; if (Options.rbGacInstallChecked) { options.rbInstallChecked = true; } else if (Options.rbGacRemoveChecked) { options.rbUninstallChecked = true; } u.Go(); }
public GacUtil(GacUtilOptions options) : base(options) { }