1

我正在尝试将输入的字符串转换为 int。我试过int.parseint.parse32但是当我按“enter”时,我得到以下错误:

System.FormatException: Input string was not in a correct format.
  at System.Number.StringToNumber(String str, NumberStyles options, 
                                  NumberBuffer & number...."

部分类Form1:

this.orderID.Text = currentID;
this.orderID.KeyPress += new KeyPressEventHandler(EnterKey);

部分类Form1:Form:

  public int newCurrentID;
  private void EnterKey(object o, KeyPressEventArgs e)
    {
        if(e.KeyChar == (char)Keys.Enter)
        {
            try
            {
                newCurrentID = int.Parse(currentID);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
            e.Handled = true;
        }
    }
4

4 回答 4

4

字符串是不可变的,因此当您分配currentID给文本框时,该文本的任何更改都不会反映在变量中currentID

this.orderID.Text = currentID;

在函数中需要做的EnterKey是直接使用 Textbox 值:

private void EnterKey(object o, KeyPressEventArgs e)
{
        if(e.KeyChar == (char)Keys.Enter)
        { 
            if(!int.TryParse(orderID.Text, out newCurrentID))
               MessageBox.Show("Not a number");
            e.Handled = true;
        }
 }
于 2013-05-14T07:24:47.150 回答
4

检查字符串,string.IsNullOrEmpty()不要尝试解析此类字符串。

于 2013-05-14T07:12:13.773 回答
1

使用TryParse而不是直接解析值:

int intResult = 0;

if (Int32.TryParse(yourString, out intResult) == true)
{
    // do whatever you want...
}
于 2013-05-14T07:14:42.883 回答
0

试试这个代码

if (!string.IsNullOrEmpty(currentID)){
     newCurrentID = int.Parse(currentID);
}
于 2013-05-14T07:16:26.497 回答