.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