9
"Await 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 …