Posts
Sort by recent activity
Timings missing from continuations in async method
I have an async method that is being profiled.
The code is something similar to
var data = await GetDataSource(); // this is timed
var processor = new ReportDataProcessor();
var processTask = proc...