vote up 3 vote down star

Is there an equivalent to F#'s List.map function in C#? i.e. apply a function to each element in the list and return a new list containing the results.

Something like:

    public static IEnumerable<TResult> Map<TSource, TResult>(this IEnumerable<TSource> source, Func<TSource, TResult> funky)
	{
		foreach (TSource element in source)
			yield return funky.Invoke(element);
	}

Is there already a built in way or should I just write the custom extension?

flag

80% accept rate

2 Answers

vote up 13 vote down check

That is LINQ's Select - i.e.

var newSequence = originalSequence.Select(x => {translation});

or

var newSequence = from x in originalSequence
                  select {translation};
link|flag
+1 Much too fast :) – Andrew Hare Oct 20 at 11:39
duh, thanks a lot Marc! – Andy J Oct 20 at 11:40
vote up 6 vote down

ConvertAll is the built-in function:

public List<TOutput> ConvertAll<TOutput>(
    Converter<T, TOutput> converter
)

Documentation: http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx

Available since .NET version 2.0.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.