Activity overview
Latest activity by Laskonka
Okay, I figured the problem out. At startup, the application reads data from the hard drive - to speed this up, several Tasks are created for parallel reads. After all the Tasks are finished, their threads return to the threadpool. For some reason, these threads continue to be included into profiling results. J. / comments
Okay, I figured the problem out. At startup, the application reads data from the hard drive - to speed this up, several Tasks are created for parallel reads. After all the Tasks are finished, their...
Hello Peter, apologies, I should have made my query clearer. Yes, its exactly how you've put it. Another hint at the fact that the profiler is not showing the desired detail is the following look into the profiling results of Main - the 'get results' line is where the code spends 100% of its runtime yet the code inspector shows 0.000. [image] Thank you, J. / comments
Hello Peter, apologies, I should have made my query clearer. Yes, its exactly how you've put it. Another hint at the fact that the profiler is not showing the desired detail is the following look i...
Transition to Unmanaged Code
Hello, Im evaluating the profiler and compared to the built-in VS profiler, it is awesome. I have one problem though. I have a
single-threaded console .NET 6.0 application
all of the code is mine, ...