9
「yield return DoSomethingAsync()」を待つことは可能ですか?
通常のイテレーターブロック(つまり、 "yield return")は、 "async"および "await"と互換性がありませんか? これは私が何をしようとしているのかについての良い考えを与えます: async Task<IEnumerable<Foo>> Method(String [] Strs) { // I want to compose the single result to the final result, so I use the SelectMany var finalResult = UrlStrings.SelectMany(link => //i have an Urlstring Collection await UrlString.DownLoadHtmlAsync() //download single result; DownLoadHtmlAsync method will Download the url's …