C# 将一个string数组转换为int数组

int[] channelCIdArr = Array.ConvertAll(channelIdStr.Split(','),s=>int.Parse(s));

  

你可能感兴趣的:(C# 将一个string数组转换为int数组)