Joseph
Joseph

Reputation: 125

loading applications in .net

how to laod an application in .net and how to get the memory usage and cpu utilization of the loaded application.

Upvotes: 0

Views: 60

Answers (1)

rerun
rerun

Reputation: 25505

You may want to reference this question for starting an application. You can use the same System.diagnostics.process object to find the information you need as to memory access. You can also the retrive the amount of time the processor has spent on this process. If you want to retrieve the processor utilization you can use a performance counter.

Upvotes: 1

Related Questions