string[] arrTemp = {22,23,222}; int[] intArray;
intArray = Array.ConvertAll<string, int>(arrTemp, s => int.Parse(s));