string数组转int数组

string数组类型转换为int数组.
方法一:ConvertAll的用法

1 public static int StrToInt(string str)
2 {
3 return int.Parse(str);
4 }
5
6 string[] arrs = new string[] { "100", "300", "200" };
7 int[] arri = Array.ConvertAll(arrs, new Converter(StrToInt));


方法二:使用数组循环分别转换。

1 string[] str1 = new string[] {"100","300","200"};
2
3 int[] intTemp = new int[str1.Length];
4 for (int i = 0; i 


方法三:
 

1 string[] str1 = new string[] {"100","300","200"};
2
3 int[] intTemp = new int[str1.Length];
4 for (int i = 0; i 

方法四:

Integer[] aftIdArray = (Integer[])ConvertUtils.convert(aftIdStringArray, Integer.class);

 

你可能感兴趣的:(string数组转int数组)