.net - How to get whole list of processes in decreasing order of their thread count ( C# ) -
this question has answer here:
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
Post a Comment