e.g. for every (n) item in the array, apply the Convert function to it and return that as the nth item in the new array
int[] strongValues = Array.ConvertAll(csvString.Split(‘,’), n => Convert.ToInt32(n));
e.g. for every (n) item in the array, apply the Convert function to it and return that as the nth item in the new array
int[] strongValues = Array.ConvertAll(csvString.Split(‘,’), n => Convert.ToInt32(n));