I\'ve got :
string[] strArray = new string[3] { \"1\", \"2\", \"12\" };
And I want something like this
int[] intArray = Con
int[] intArray = Array.ConvertAll(strArray, int.Parse);
or in C# 2.0 (where the generic type inference is weaker):