c#字符串转数字的函数|c#字符串转数字的无错函数|c#字符串转数字的最好函数
//字符串转整数
public int GetInt(string str) {
int.TryParse(str,out tempInt);
return tempInt;
}
/字符串转整数浮点
{
decimal tempDecimal = 0;
decimal.TryParse(str, out tempDecimal);
return tempDecimal;
}
/字符串转小树整数
{
double tempDouble = 0;
double.TryParse(str, out tempDouble);
return tempDouble;
}