public static string[] CollectArgs(IWin32Window parent, string report, string[] args) { using (var dlg = new QualityControlUI(args)) { if (parent != null) { return (dlg.ShowDialog(parent) == DialogResult.OK) ? dlg.Arguments : null; } return (dlg.ShowDialog() == DialogResult.OK) ? dlg.Arguments : null; } }
public static string[] CollectArgs(IWin32Window parent, string report, string[] args) { using (var dlg = new QualityControlUI(args)) { if (parent != null) { return((dlg.ShowDialog(parent) == DialogResult.OK) ? dlg.Arguments : null); } return((dlg.ShowDialog() == DialogResult.OK) ? dlg.Arguments : null); } }