102
public class test
{
    public async Task Go()
    {
        await PrintAnswerToLife();
        Console.WriteLine("done");
    }

    public async Task PrintAnswerToLife()
    {
        int answer = await GetAnswerToLife();
        Console.WriteLine(answer);
    }

    public async Task<int> GetAnswerToLife()
    {
        await Task.Delay(5000);
        int answer = 21 * 2;
        return answer;
    }
}

如果我想在 main() 方法中调用 Go,我该怎么做?我正在尝试 c# 的新功能,我知道我可以将异步方法挂钩到一个事件,并通过触发该事件,可以调用异步方法。

但是如果我想直接在 main 方法中调用它呢?我怎样才能做到这一点?

我做了类似的事情

class Program
{
    static void Main(string[] args)
    {
        test t = new test();
        t.Go().GetAwaiter().OnCompleted(() =>
        {
            Console.WriteLine("finished");
        });
        Console.ReadKey();
    }


}

但似乎这是一个死锁,屏幕上没有打印任何内容。

4

9 回答 9

128

你的Main方法可以简化。对于 C# 7.1 和更新版本:

static async Task Main(string[] args)
{
    test t = new test();
    await t.Go();
    Console.WriteLine("finished");
    Console.ReadKey();
}

对于 C# 的早期版本:

static void Main(string[] args)
{
    test t = new test();
    t.Go().Wait();
    Console.WriteLine("finished");
    Console.ReadKey();
}

这是async关键字(和相关功能)之美的一部分:回调的使用和混淆性质大大减少或消除。

于 2012-10-22T00:07:51.587 回答
28

最好不要使用 Wait, new test().Go().GetAwaiter().GetResult() 因为这样可以避免将异常包装到 AggregateExceptions 中,因此您可以像往常一样用 try catch(Exception ex) 块包围您的 Go() 方法。

于 2016-03-08T11:01:00.233 回答
26

由于 C# v7.1async main方法的发布已经可以使用,这避免了对已经发布的答案中的变通方法的需要。添加了以下签名:

public static Task Main();
public static Task<int> Main();
public static Task Main(string[] args);
public static Task<int> Main(string[] args);

这使您可以像这样编写代码:

static async Task Main(string[] args)
{
    await DoSomethingAsync();
}

static async Task DoSomethingAsync()
{
    //...
}
于 2017-07-28T08:49:57.537 回答
15
class Program
{
    static void Main(string[] args)
    {
       test t = new test();
       Task.Run(async () => await t.Go());
    }
}
于 2017-12-06T01:19:42.360 回答
13

只要您从返回的任务中访问结果对象,就根本不需要使用 GetAwaiter(仅在您访问结果的情况下)。

static async Task<String> sayHelloAsync(){

       await Task.Delay(1000);
       return "hello world";

}

static void main(string[] args){

      var data = sayHelloAsync();
      //implicitly waits for the result and makes synchronous call. 
      //no need for Console.ReadKey()
      Console.Write(data.Result);
      //synchronous call .. same as previous one
      Console.Write(sayHelloAsync().GetAwaiter().GetResult());

}

如果您想等待任务完成并进行进一步处理:

sayHelloAsyn().GetAwaiter().OnCompleted(() => {
   Console.Write("done" );
});
Console.ReadLine();

如果您有兴趣从 sayHelloAsync 获取结果并对其进行进一步处理:

sayHelloAsync().ContinueWith(prev => {
   //prev.Result should have "hello world"
   Console.Write("done do further processing here .. here is the result from sayHelloAsync" + prev.Result);
});
Console.ReadLine();

等待函数的最后一种简单方法:

static void main(string[] args){
  sayHelloAsync().Wait();
  Console.Read();
}

static async Task sayHelloAsync(){          
  await Task.Delay(1000);
  Console.Write( "hello world");

}
于 2017-06-26T19:55:38.663 回答
5
public static void Main(string[] args)
{
    var t = new test();
    Task.Run(async () => { await t.Go();}).Wait();
}
于 2018-04-07T15:09:33.590 回答
2

使用 .Wait()

static void Main(string[] args){
   SomeTaskManager someTaskManager  = new SomeTaskManager();
   Task<List<String>> task = Task.Run(() => marginaleNotesGenerationTask.Execute());
   task.Wait();
   List<String> r = task.Result;
} 

public class SomeTaskManager
{
    public async Task<List<String>> Execute() {
        HttpClient client = new HttpClient();
        client.BaseAddress = new Uri("http://localhost:4000/");     
        client.DefaultRequestHeaders.Accept.Clear();           
        HttpContent httpContent = new StringContent(jsonEnvellope, Encoding.UTF8, "application/json");
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
        HttpResponseMessage httpResponse = await client.PostAsync("", httpContent);
        if (httpResponse.Content != null)
        {
            string responseContent = await httpResponse.Content.ReadAsStringAsync();
            dynamic answer = JsonConvert.DeserializeObject(responseContent);
            summaries = answer[0].ToObject<List<String>>();
        }
    } 
}
于 2018-07-20T14:35:05.837 回答
0

C# 9 顶级语句进一步简化了事情,现在你甚至不需要做任何额外的事情来调用async你的方法Main,你可以这样做:

using System;
using System.Threading.Tasks;

await Task.Delay(1000);
Console.WriteLine("Hello World!");

有关更多信息,请参阅C# 9.0 中的新增功能,顶级语句

顶级语句可能包含异步表达式。在这种情况下,综合入口点返回 aTaskTask<int>

于 2020-11-21T21:29:38.980 回答
0

尝试“结果”属性

class Program
{
    static void Main(string[] args)
    {
        test t = new test();
        t.Go().Result;
        Console.ReadKey();
    }
}
于 2020-02-13T05:16:30.050 回答