我目前正在为BMI计算制作一个小应用程序。该程序编译良好,但我得到
的运行时错误格式异常未处理
在这一行:
height = float.Parse(textBox1.Text);
该行是该功能的一部分:
private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
float height;
height = float.Parse(textBox1.Text);
height = height*height;
}
答案 0 :(得分:1)
解析时,您还没有在文本框中说明 。也许它是空的,或者用户输入类似“fred”的东西。您应该始终假设输入可能无效:
private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
float height;
if (!float.TryParse(textBox1.Text, out height))
{
// Indicate to the user that the input is invalid, and stop processing
// at this point. For example, you may want to highlight the textbox with
// a red box. Return at the end of the block.
}
// It parsed correctly: continue...
height = height*height;
...
}
(在MVVM方法中,这可能会略有不同,但您仍然希望在接受之前使用float.TryParse
测试用户输入。)