Exemplo n.º 1
0
 static async Task Main(string[] args)
 {
     var   service = new SomeService();
     await service;
 }
Exemplo n.º 2
0
 public SomeServiceAwaiter(SomeService someService)
 {
     _task = someService.DoSomeWorkAsync();
 }