Tagged Questions
24
votes
5answers
4k views
C# Captured Variable In Loop
I met a interesting issue about C#. I have code like below
List<Func<int>> actions = new List<Func<int>>();
int variable = 0;
while (variable < 5)
{
actions.Add(() ...