I've recently discovered the CTP Async Library and I wanted to try to write a toy program to get familiar with the new concepts, however I'm running into an issue.
I believe the code should write out
Starting
stuff in the middle
task string
but it's not. Here's the code I'm running with:
namespace TestingAsync
{
class Program
{
static void Main(string[] args)
{
AsyncTest a = new AsyncTest();
a.MethodAsync();
}
}
class AsyncTest
{
async public void MethodAsync()
{
Console.WriteLine("Starting");
string test = await Slow();
Console.WriteLine("stuff in the middle");
Console.WriteLine(test);
}
private async Task<string> Slow()
{
await TaskEx.Delay(5000);
return "task string";
}
}
}
Any ideas? It would be awesome if someone knew of some good tutorials and/or videos demonstrating the concepts.