7
votes
4answers
1k 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;
whil …
1
vote
3answers
63 views
Captured variable instantiating problem
I'm currently musing about some idea I can't get right.
The problem is that I want to use one lambda function to instantiate a captured variable and another lambda to access a pro …
