Tagged Questions
6
votes
1answer
539 views
Is there a way to implement Caliburn-like co-routines in VB.NET since there's no yield keyword
Note that I'm aware of other yield in vb.net questions here on SO.
I'm playing around with Caliburn lately. Bunch of great stuff there, including co-routines implementation.
Most of the work I'm ...
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 ...
1
vote
4answers
225 views
c# yield and try-finally
If I have a coroutine as follows, will the code in the finally block get called?
public IEnumerator MyCoroutine(int input)
{
try
{
if(input > 10)
{
Console.WriteLine("Can't count ...