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(() ...
6
votes
4answers
137 views

How to avoid captured variables?

I'm having a problem with foreach(var category in categories) { foreach(var word in words) { var waitCallback = new WaitCallback(state => { DoSomething(word, ...
2
votes
1answer
253 views

Combine two regex group into a key/value pair object?

Let's say that I have the following string Type="Category" Position="Top" Child="3" ABC="XYZ".... And 2 regex groups: Key and Value Key: "Type", "Position", "Child",... Value: "Category", "Top", ...
1
vote
4answers
182 views

Capture Variable Into An EventHandler

I might be overthinking this one a little but I could use some help in identifying a way/the best way to do the following. I have an event handler that is attached to an object that is a property of ...
1
vote
3answers
208 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 property of that ...