loading applications in .net
how to laod an application in .net and how to get the memory usage and cpu utilization of the loade开发者_StackOverflow中文版d application.
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.
精彩评论