同步调用异步方法我有一个async方法:public async Task<string> GenerateCodeAsync(){
string code = await GenerateCodeService.GenerateCodeAsync();
return code;}我需要从同步方法中调用此方法。如何在不必复制GenerateCodeAsync方法的情况下执行此操作以使其同步工作?更新然而找不到合理的解决方案但是,我看到HttpClient已经实现了这种模式using (HttpClient client = new HttpClient()){
// async
HttpResponseMessage responseAsync = await client.GetAsync(url);
// sync
HttpResponseMessage responseSync = client.GetAsync(url).Result;}
3 回答
- 3 回答
- 0 关注
- 763 浏览
添加回答
举报
0/150
提交
取消