views:

2794

answers:

1

How can I implement the Producer/Consumer patterns in C# using Events and Delegates? What do I need to keep an eye out for when it comes to resources when using these design patterns? Are there any edge cases I need to be aware of?

+10  A: 

Have a look at this link on MSDN

Mystic