C# Captured Variable In Loop - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:44:06Zhttp://stackoverflow.com/feeds/question/271440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/271440/c-captured-variable-in-loop7C# Captured Variable In LoopMorgan Cheng2008-11-07T07:26:42Z2009-09-02T01:33:13Z
<p>I met a interesting issue about C#. I have code like below</p>
<pre><code> List<Func<int>> actions = new List<Func<int>>();
int variable = 0;
while (variable < 5)
{
actions.Add(() => variable * 2);
++ variable;
}
foreach (var act in actions)
{
Console.WriteLine(act.Invoke());
}
</code></pre>
<p>I expect it to output 0, 2, 4, 6, 8. However, it actually output five 10s.</p>
<p>It seems that it is due to all actions are referring to one captured variable. As a result, when they get invoked, they all have same output.</p>
<p>Is there any way to walk round this limit to have each action instance have its own captured variable?</p>
http://stackoverflow.com/questions/271440/c-captured-variable-in-loop/271447#2714479Answer by Jon Skeet for C# Captured Variable In LoopJon Skeet2008-11-07T07:32:04Z2008-11-07T07:37:12Z<p>Yes - take a copy of the variable inside the loop:</p>
<pre><code>while (variable < 5)
{
int copy = variable;
actions.Add(() => copy * 2);
++ variable;
}
</code></pre>
<p>You can think of it as if the C# compiler creates a "new" local variable every time it hits the variable declaration. In fact it'll create appropriate new closure objects, and it gets complicated (in terms of implementation) if you refer to variables in multiple scopes, but it works :)</p>
<p>Note that a more common occurrence of this problem is using <code>for</code> or <code>foreach</code>:</p>
<pre><code>for (int i=0; i < 10; i++) // Just one variable
foreach (string x in foo) // And again, despite how it reads out loud
</code></pre>
<p>See section 7.14.4.2 of the C# 3.0 spec for more details of this, and my <a href="http://csharpindepth.com/Articles/Chapter5/Closures.aspx" rel="nofollow">article on closures</a> has more examples too.</p>
http://stackoverflow.com/questions/271440/c-captured-variable-in-loop/271449#2714490Answer by cfeduke for C# Captured Variable In Loopcfeduke2008-11-07T07:32:55Z2008-11-07T07:32:55Z<p>Yes you need to scope <code>variable</code> within the loop and pass it to the lambda that way:</p>
<pre><code>List<Func<int>> actions = new List<Func<int>>();
int variable = 0;
while (variable < 5)
{
int variable1 = variable;
actions.Add(() => variable1 * 2);
++variable;
}
foreach (var act in actions)
{
Console.WriteLine(act.Invoke());
}
Console.ReadLine();
</code></pre>
http://stackoverflow.com/questions/271440/c-captured-variable-in-loop/271450#2714500Answer by tjlevine for C# Captured Variable In Looptjlevine2008-11-07T07:33:18Z2008-11-07T07:33:18Z<p>The way around this is to store the value you need in a proxy variable, and have that variable get captured.</p>
<p>I.E.</p>
<pre><code>while( variable < 5 )
{
int copy = variable;
actions.Add( () => copy * 2 );
++variable;
}
</code></pre>
http://stackoverflow.com/questions/271440/c-captured-variable-in-loop/271455#2714552Answer by TheCodeJunkie for C# Captured Variable In LoopTheCodeJunkie2008-11-07T07:34:36Z2008-11-07T07:34:36Z<p>I believe what you are experiencing is something known as Closure <a href="http://en.wikipedia.org/wiki/Closure_(computer_science)" rel="nofollow">http://en.wikipedia.org/wiki/Closure_(computer_science)</a>. Your lamba has a reference to a variable which is scoped outside the function itself. Your lamba is not interpreted until you invoke it and once it is it will get the value the variable has at execution time.</p>