Tagged Questions
11
votes
2answers
692 views
Coroutines in C#
I am looking to implement co-routines (user schedualed threads) in c#. When using c++ I was previously using fibers. As I see on the internet fibers do not exist in C#. I would like to get simillar ...
4
votes
4answers
1k views
Fibers in C#: are they faster than iterators, and have people used them?
So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API.
The implementation of Yield in this paper ...