-8

変換に失敗した値を取得するにはどうすればよいですか? 一般に、この単一の特定のケースではありません。

try
{
    textBox1.Text = "abc";
    int id = Convert.ToInt(textBox1.Text);
}
catch
{
    // Somehow get the value for the parameter to the .ToInt method here 
}
4

4 に答える 4

0
textBox1.Text = "abc";
try
{      
  int id = Convert.ToInt(textBox1.Text);
}
catch(FormatException ex)
{
   MessageBox.Show(textBox1.Text);
}
于 2012-11-19T10:50:56.640 に答える