J'ai un tableau d'entiers sous forme de chaîne:
var arr = new string[] { "1", "2", "3", "4" };
J'ai besoin d'un tableau de «vrais» entiers pour aller plus loin:
void Foo(int[] arr) { .. }
J'ai essayé de lancer int et cela a bien sûr échoué:
Foo(arr.Cast<int>.ToArray());
Je peux faire ensuite:
var list = new List<int>(arr.Length);
arr.ForEach(i => list.Add(Int32.Parse(i))); // maybe Convert.ToInt32() is better?
Foo(list.ToArray());
ou
var list = new List<int>(arr.Length);
arr.ForEach(i =>
{
int j;
if (Int32.TryParse(i, out j)) // TryParse is faster, yeah
{
list.Add(j);
}
}
Foo(list.ToArray());
mais les deux ont l'air moche.
Existe-t-il d'autres moyens de terminer la tâche?