标签:
1、String数组转换成Int数组
string[] strArr = "a,b,c".Split(‘,‘); int[] intArr = Array.ConvertAll<string, int>(strArr, s => int.Parse(s));
.net 常用方法
原文地址:http://www.cnblogs.com/Zing/p/4773572.html