Example #1
0
 public static bool Show(string title, out string name, out int? integer)
 {
     IntInputBox form = new IntInputBox(title);
     bool result = form.ShowDialog() == DialogResult.OK;
     name = form.nameResult;
     integer = form.intResult;
     return result;
 }
        public static bool Show(string title, out string name, out int?integer)
        {
            IntInputBox form   = new IntInputBox(title);
            bool        result = form.ShowDialog() == DialogResult.OK;

            name    = form.nameResult;
            integer = form.intResult;
            return(result);
        }