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