static void Main(string[] args)
{
var s = 3;
Func<int, Func<int>> func =
x => () =>
{
return x;
};
var result1 = func(s);
func = null;
s = 5;
var result2 = result1();
Console.WriteLine(result2);
Console.ReadKey();
}
My understanding is that x is not actually declared as a variable eg. var x = 3. Instead, it's passed into the outer function, which returns a function that returns the original value. At the time it is returning this, it creates a closure around x to remember its value. Then later on, if you alter s, it has no effect.
Is this right?
(Output is 3 by the way, which I'd expect).
Edit: here's a diagram as to why I think it is

x=3 is passed into the func, and it returns a function that simply returns x. But x doesn't exist in the inner function, only its parent, and its parent no longer exists after I make it null. Where is x stored, when the inner function is ran? It must create a closure from the parent.
Further clarification:
int s = 0;
Func<int, Func<int>> func =
x => () =>
{
return x;
};
for (s = 0; s < 5; s++)
{
var result1 = func(s);
var result2 = result1();
Console.WriteLine(result2);
};
Output is 0, 1, 2, 3, 4
However with your example:
static void Main(string[] args)
{
int s = 0;
Func<int, Func<int>> func =
x => () =>
{
return s;
};
List<Func<int>> results = new List<Func<int>>();
for (s = 0; s < 5; s++)
{
results.Add(func(s));
};
foreach (var b in results)
{
Console.WriteLine(b());
}
Console.ReadKey();
}
The output is 5 5 5 5 5, which isn't what you want. It hasn't captured the value of the variable, it's merely retained a reference to the original s.
Closures are created in javascript precisely to avoid this problem.
Func<int, Func<int>> func = x => () => x + s;would close overs– asawyer Jun 12 '12 at 14:43sbut also closing onsin the lambda itself (thereturn sclause), leavingxunused... – James Michael Hare Jun 12 '12 at 15:43xis unused in the 2nd example (I just didn't bother removing it). I might post a follow up question asking why in the 01234 example, the output is not also 55555, because it's storingxsomewhere, but strangely not as a reference tos. It's probably just as simple as it's storing it unboxed, and so it reverts to a value type. – SLC Jun 12 '12 at 15:47