C# Captured Variable In Loop - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:44:06Z http://stackoverflow.com/feeds/question/271440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/271440/c-captured-variable-in-loop 7 C# Captured Variable In Loop Morgan Cheng 2008-11-07T07:26:42Z 2009-09-02T01:33:13Z <p>I met a interesting issue about C#. I have code like below</p> <pre><code> List&lt;Func&lt;int&gt;&gt; actions = new List&lt;Func&lt;int&gt;&gt;(); int variable = 0; while (variable &lt; 5) { actions.Add(() =&gt; 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#271447 9 Answer by Jon Skeet for C# Captured Variable In Loop Jon Skeet 2008-11-07T07:32:04Z 2008-11-07T07:37:12Z <p>Yes - take a copy of the variable inside the loop:</p> <pre><code>while (variable &lt; 5) { int copy = variable; actions.Add(() =&gt; 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 &lt; 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#271449 0 Answer by cfeduke for C# Captured Variable In Loop cfeduke 2008-11-07T07:32:55Z 2008-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&lt;Func&lt;int&gt;&gt; actions = new List&lt;Func&lt;int&gt;&gt;(); int variable = 0; while (variable &lt; 5) { int variable1 = variable; actions.Add(() =&gt; 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#271450 0 Answer by tjlevine for C# Captured Variable In Loop tjlevine 2008-11-07T07:33:18Z 2008-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 &lt; 5 ) { int copy = variable; actions.Add( () =&gt; copy * 2 ); ++variable; } </code></pre> http://stackoverflow.com/questions/271440/c-captured-variable-in-loop/271455#271455 2 Answer by TheCodeJunkie for C# Captured Variable In Loop TheCodeJunkie 2008-11-07T07:34:36Z 2008-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>