What is the C# equivalent of map function in Haskell
c#
Solution
`Select`
MSDN Reference
See my question Why is the LINQ "apply-to-all" method named `Select`? (Only if you are curious as it is not directly related).
Problem
map function in Haskell has two input parameters. The first parameter is a function and second parameter is a list. The map function applies the function passed as input parameter to all the elements in the list and returns a new list. Is there a C# equivalent to this functionality?