Logo

Programming-Idioms

  • Lisp
  • C#

Idiom #258 Convert list of strings to list of integers

Convert the string values from list a into a list of integers b.

System.Linq;
var b = a.Select(i => int.Parse(i)).ToList();
var b = a.map(int.parse).toList();

New implementation...