.net - How to get whole list of processes in decreasing order of their thread count ( C# ) -


this question has answer here:

fig refers task manager resource monitor

how whole list of processes in decreasing order of thread count ( c# )

you try this,

process[] processlist = process.getprocesses().orderbydescending(x => x.threads.count).toarray(); 

Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -