Public Shared Async Function getMarketDetailFromAllExchangesAsync() As Task
Dim taskList = New List(Of Task)
For Each account In uniqueAccounts()
Dim newtask = account.Value.getMarketInfoAsync()
taskList.Add(newtask)
Next
Await Task.WhenAll(taskList.ToArray)
Dim b = 1
End Function
代码工作得很好。
但是,我想在每次完成任务时记录
所以我做了
newtask.ContinueWith(Async Function(x) LogEvents(account.ToString))
LogEvents 是一个正常的功能。我有 2 个错误
我应该怎么做?