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

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

你可能感兴趣的:(字符串数组转换为整型数组)