I found a VB version of this here, but I'd like to use a Lambda Expression to take a List of strings and then prepend a string onto every item in the list.

It seems like using the ForEach ends up sending in the string by value, so any changes disappear. Here's the line of code I was hoping to have work.

listOfStrings.ForEach((listItem) => {listItem = listItem.Insert(0,"a");});
link|improve this question

53% accept rate
You can't change a collection while iterating using a ForEach. – DustinDavis Jun 8 '11 at 3:03
Strings are immutable, so you won't be able to use a foreach like this. – R0MANARMY Jun 8 '11 at 3:04
Use for, there is no way other than custom extension to use lambda function. – Dani Jun 8 '11 at 3:07
feedback

4 Answers

up vote 10 down vote accepted

Strings are immutable, they cannot be altered "in place". Therefore, you'd have to replace each entry in the list which you cannot do with List<T>.ForEach. At this point you'd be best just making a new list:

listOfStrings = listOfStrings.Select(value => "a" + value).ToList();
link|improve this answer
DOH! You beat me to it. Damn robot test :) – DustinDavis Jun 8 '11 at 3:07
@Dustin: quite ok, you still get a +1 for being right. – sixlettervariables Jun 8 '11 at 3:12
feedback
List<string> x = new List<string>();
            x.Add("d");

            List<string> res = x.Select(c => "a" + c).ToList();
link|improve this answer
feedback

If you need to modify the list in place, then an explicit for loop is appropriate.

for (int index = 0; index < list.Count; index++)
{
     list[index] = // modify away!
}

Otherwise, use the Select(Func<T, TOut> selector) with the optional .ToList() or .ToArray() as demonstrated by sixlettervariables.

link|improve this answer
+1, in-place list updating. – sixlettervariables Jun 8 '11 at 3:09
feedback

You can make your own extension:

public static void ForEachChange<T>(this List<T> List, Func<T, T> Func)
{
    for(int i = 0; i < List.Count; i++)
        List[i] = Func(List[i]);
}

listOfStrings.ForEachChange((listItem) => {return listItem.Insert(0,"a");});

will work now

Edit:
Now working

link|improve this answer
1  
-1, bad strategy if this worked. Regardless, properties (such as List<T>'s indexer) cannot be made a ref, nor can ref be a part of a generic type specification. C# is not quite C++. – sixlettervariables Jun 8 '11 at 3:11
@sixlettervariables: its fixed now, not sure why you think this is a bad idea – Dani Jun 8 '11 at 3:20
It's mixing side effects into "functional" style programming. But that's a personal preference, so I'll remove my -1 since this is now working. – sixlettervariables Jun 8 '11 at 3:25
Lambdas, delegates and LINQ are a huge stack of side effects already – Dani Jun 8 '11 at 3:29
2  
Not in the functional sense of the term "side effect". list.Select(x => x + 1) does not change list. – sixlettervariables Jun 8 '11 at 3:29
feedback

Your Answer

 
or
required, but never shown

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