码迷,mamicode.com
首页 > 编程语言 > 详细

字符串数组转换为整型数组

时间:2015-09-22 12:42:47      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

string [] str = deptid.Split(‘,‘);
int[] wxdepid = new int[str.Count()];
for(int i=0;i<wxdepid.Count();i++)
{
wxdepid[i] = Convert.ToInt32(str[i]);
}

字符串数组转换为整型数组

标签:

原文地址:http://www.cnblogs.com/pp521/p/4828429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!