Given an array you can use the
Array.ConvertAll
method:int[] myInts = Array.ConvertAll(arr, s => int.Parse(s));
int[] myInts = Array.ConvertAll(arr, int.Parse);
A LINQ solution is similar, except you would need the extra
ToArray
call to get an array:int[] myInts = arr.Select(int.Parse).ToArray();
No comments:
Post a Comment