F Frank Rizzo Jan 26, 2005 #1 How can I find out how many threads are running inside my application? Either in the ThreadPool or outside of it? Thanks
How can I find out how many threads are running inside my application? Either in the ThreadPool or outside of it? Thanks
A Alvin Bruney [MVP] Jan 26, 2005 #2 look into performance counters. here is a good starter link with source code http://msdn.microsoft.com/msdnmag/issues/04/04/InstrumentationinNET/default.aspx
look into performance counters. here is a good starter link with source code http://msdn.microsoft.com/msdnmag/issues/04/04/InstrumentationinNET/default.aspx
I Ignacio Machin \( .NET/ C# MVP \) Jan 26, 2005 #3 Hi, Another solution may be Process.Threads.Count But I don't know if you can differentiate the one running in the pool cheers, -- Ignacio Machin, ignacio.machin AT dot.state.fl.us Florida Department Of Transportation
Hi, Another solution may be Process.Threads.Count But I don't know if you can differentiate the one running in the pool cheers, -- Ignacio Machin, ignacio.machin AT dot.state.fl.us Florida Department Of Transportation