本文介绍了获取错误“输入字符串的格式不正确”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从以下代码中,
From the following code,
string strid = txtId.Text;
int id = Convert.ToInt32(strid);
我收到这样的消息
输入字符串格式不正确
我该怎么办?
I was getting a message like this
"Input string was not in a correct format"
what should I do?
推荐答案
string strid = txtId.Text;
int id=0;
Int32.TryParse(strid, out id);
使用上面的代码,你不会得到错误,你将在id变量中获得转换后的值。如果strid不在格式良好的输入中,你' ll在id中得到0作为值。: - )
Using above code, you'll not get the error, and you'll get the converted value in id variable.If strid is not in well formed input, you'll get 0 in id as a value.:-)
string strid = txtId.Text;
if(strid != "")
{
int id = Convert.ToInt32(strid);
}
这篇关于获取错误“输入字符串的格式不正确”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!