如何将数字形式字符串转化成数字

作者:vkvi 来源:ITPOW(原创) 日期:2007-7-18
以转化为 int 类型为例:
string str = "123";
int n = Conver.ToInt32(str);

相关阅读

相关文章