我有一个练习,我必须将字符串转换为整数并能够处理负数。这种方法可行,但必须有更好的方法来做到这一点。
String nr = "-5.6";
double x = Convert.ToDouble(nr); //Convert to double
double y = Math.Round(x); //Round the nr
int r = Convert.ToInt32(x); //Convert to Int
string t = r.ToString(); //Convert back to string so possible
textBox1.AppendText(t); //to Append to textBox
九州编程
慕勒3428872
相关分类