Application/process memory usage
How can i determine what the memory footprint of a process or application is?
Also, anyway to determine what precentage of the CPU a process is utilizing or whether it is idle?
thanks
How can i determine what the memory footprint of a process or application is?
Also, anyway to determine what precentage of the CPU a process is utilizing or whether it is idle?
thanks

"Peak bytes allocated" will give you a max amount of memory allocated by the runtime when running your app.
Please note that .NetCF perfomance counters won't cover allocations performed down in native code (while in p/invoke function or COM interop call).
This posting is provided "AS IS" with no warranties, and confers no rights.