[Solved] C#: Why does it take so long to get a Task t.Result when the task has already finished? [closed]
[ad_1] I’ll update this as you update your question, but here’s my best guess. This line doesn’t compile, because Select doesn’t return a List: List<Task<T>> myTasks = someList.Select(x => Task.Run(() => DoSomethingWith(x))); I’m going to hazard a guess that you’re actually doing this: var myTasks = someList.Select(x => Task.Run(() => DoSomethingWith(x))); … which produces a … Read more