I have a problem which I could solve using something like this

sortedElements.ForEach((XElement el) => PrintXElementName(el,i++));

And this means that I have in ForEach a lambda which permits using parameters like int i.

I like that way of doing it, but i read somewhere that anonymous methods and delegates with lambda leads to a lot of memory leaks because each time when lambda is executed something is instantiated but is not released. Something like that.

Could you please tell me if this is true in this situation and if it is why?

link|improve this question

62% accept rate
Not a memory leak, but a possible problem with lambda/foreach: weblogs.asp.net/fbouma/archive/2009/06/25/… – tanascius May 12 '10 at 12:06
feedback

2 Answers

I like that way of doing it, but i read somewhere that anonymous methods and delegates with lambda leads to a lot of memory leaks because each time when lambda is executed something is instantiated but is not released

No, that is not true. Now the used resources won't be released until the delegate is garbage collected. It's just like any other managed object, but using a Lambda expression in most cases is not any less efficient than accomplishing the same thing another way.

This isn't to say that you couldn't make a lamda expression cause a massive memory leak, it's just like any other code. If you were to say do something like

(x => //open unmanaged resource here and not close it....)

and call that in a foreach loop, that could be really bad.

What you have to remember is that your Lamda expression is essentially

(XElement el) => PrintXElementName(el,i++)

void Your_Function (XElement el)
{
    PrintXElementName(el,i++);
}
link|improve this answer
Shoudlnt' it be return PrintXElementName(el,i++); ? – Bastien Léonard May 12 '10 at 12:05
1  
ForEach doesn't return anything. It loops through each element in the collection. – Kevin May 12 '10 at 12:08
feedback

It's not worth worrying about until you profile your application and it does leak memory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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