public static bool Show(string title, out string name) { NameInputBox form = new NameInputBox(title); bool result = form.ShowDialog() == DialogResult.OK; name = form.nameResult; return result; }
public static bool Show(string title, out string name) { NameInputBox form = new NameInputBox(title); bool result = form.ShowDialog() == DialogResult.OK; name = form.nameResult; return(result); }