In Windows Phone most of methods run asynchronously in separate thread, when a lot of threads, it is very hard to debug application. How can monitor threads in Windows Phone? Any tool that can give any information about an asynchronous operations.
I use Visual Studio 2010 Ultimate and Emulator Windows Phone.
Thanks in advance.
They don’t.
“most of methods” run asynchronously by the CLR thread pool that only has a few threads.
Unless you’ve created a lot of threads yourself, which is very bad idea – threads are expensive, and CLR thread pool works great.
When paused while debugging, VS2010 has “Threads” window.