I am fairly novice in the async world, and I am trying to figure out how to make sure my main method of an console app actually runs async

class Program
{
    static void Main(string[] args)
    {
        Bootstrapper bs = new Bootstrapper();
        var list = bs.GetList();
    }
}

public class Bootstrapper {

    public async Task<List<TvChannel>> GetList()
    {
        GetPrograms pro = new GetPrograms();

        return await pro.DownloadTvChannels();
    }
}

I know this is not running async from "the top". but since you cannot mark the Main with async I have no idea of how to make sure. Any ideas ? Thank you!

link|improve this question

feedback

2 Answers

As you discovered, in VS11 the compiler will disallow an async Main method. This was allowed (but never recommended) in VS2010 with the Async CTP.

I have recent blog posts about async/await and asynchronous console programs in particular. Here's some background info from the intro post:

If "await" sees that the awaitable has not completed, then it acts asynchronously. It tells the awaitable to run the remainder of the method when it completes, and then returns from the async method. Await will also capture the current context when it passes the remainder of the method to the awaitable.

Later on, when the awaitable completes, it will execute the remainder of the async method (within the captured context).

Here's why this is a problem in Console programs with an async Main:

Remember from our intro post that an async method will return to its caller before it is complete. This works perfectly in UI applications (the method just returns to the UI event loop) and ASP.NET applications (the method returns off the thread but keeps the request alive). It doesn't work out so well for Console programs: Main returns to the OS - so your program exits.

One solution is to provide your own context - a "main loop" for your console program that is async-compatible.

If you have a machine with the Async CTP, you can use GeneralThreadAffineContext from My Documents\Microsoft Visual Studio Async CTP\Samples(C# Testing) Unit Testing\AsyncTestUtilities. Alternatively, you can use AsyncContext from my Nito.AsyncEx NuGet package.

Here's an example using AsyncContext; GeneralThreadAffineContext has almost identical usage:

using Nito.AsyncEx;
class Program
{
    static void Main(string[] args)
    {
        AsyncContext.Run(() => MainAsync(args));
    }

    static async void MainAsync(string[] args)
    {
        Bootstrapper bs = new Bootstrapper();
        var list = await bs.GetList();
    }
}
link|improve this answer
feedback

You certainly can mark Main with async... although it's generally not a good idea to do so.

Unless you've started any other foreground threads, your program will exit when Main completes, even if it's started some background work.

What are you really trying to do? Note that your GetList() method really doesn't need to be async at the moment - it's adding an extra layer for no real reason. It's logically equivalent to (but more complicated than):

public Task<List<TvChannel>> GetList()
{
    return new GetPrograms().DownloadTvChannels();
}
link|improve this answer
Jon, I want to get the items in the list asynchronously, so why is the async not appropriate on that GetList method ? Is it because I need to collect the items in the list async' and not the list itself ? When I try to mark the Main method with async I get a "does not contain a static Main method..." – danielovich Feb 9 at 10:28
@danielovich: What does DownloadTvChannels() return? Presumably it returns a Task<List<TvChannel>> doesn't it? If not, it's unlikely that you'd be able to await it. (Possible, given the awaiter pattern, but unlikely.) As for the Main method - it still needs to be static... did you replace the static modifier with the async modifier perhaps? – Jon Skeet Feb 9 at 10:34
yes, it returns a Task<..> like you said. No matter how I try to put async in the Main method signature it throws an error. I am sitting on VS11 preview bits! – danielovich Feb 9 at 11:08
@danielovich: Even with a void return type? Just public static async void Main() {}? But if DownloadTvChannels() already returns a Task<List<TvChannel>>, presumably it's already asynchronous - so you don't need to add another layer. It's worth understanding this carefully. – Jon Skeet Feb 9 at 11:09
yes, it's not working no matter what! That was why I tried to do another abstraction on top... – danielovich Feb 9 at 11:34
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.