我正在考虑在async
await
调用服务时使用关键字,但想知道是否await
需要关键字?
如果找到,则修改示例;我想做的是设置一个async
对可以继续工作的服务的调用,但不需要等待响应:
async Task CallService(InformationForService informationForService)
{
var service = SetupService();
// Does this need the await keyword?
service.Doof(informationForService);
}