Is it possible using the VS2010 profiler to sample a thread other than the Main Thread in C#
- 阅读更多 关于 Is it possible using the VS2010 profiler to sample a thread other than the Main Thread in C#
问题 I'm trying to profile an app in c#, never done any kind of profiling before. I haven't been able to find much documentation on the profiler so far maybe someone here might know better. I have an app that when I click a toolbar button, kicks off a background thread to fetch me some data. The data is then prepared and displayed on the Main thread. I'm trying to profile this process to determine whether the time taken is in the preparation of the data or in the fetching, but I'm not having much