string [] str = deptid.Split(‘,‘);
int[] wxdepid = new int[str.Count()];
for(int i=0;i<wxdepid.Count();i++)
{
wxdepid[i] = Convert.ToInt32(str[i]);
}
时间: 2024-10-05 05:43:26
string [] str = deptid.Split(‘,‘);
int[] wxdepid = new int[str.Count()];
for(int i=0;i<wxdepid.Count();i++)
{
wxdepid[i] = Convert.ToInt32(str[i]);
}