c#中从string数组转换到int数组

 

1string[] input = "1""2""3""4""5""6""7""8""9" };
2int[] output = Array.ConvertAll<stringint>(input, delegate(string s) return int.Parse(s); });
posted @ 2009-04-29 11:29  蜗牛007  阅读(1011)  评论(0)    收藏  举报