Which is the fastest method for convert an string\'s array [\"1\",\"2\",\"3\"] in a int\'s array [1,2,3] in c#?
thanks
var values = new string[] { "1", "2", "3" }; values.Select(x => Int32.Parse(x)).ToArray();