C# memory usage

Viewed 9259

How I can get the actual memory used in my C# application?

  • Task Manager shows different metrics.
  • Process Explorer shows increased usage of private bytes.
  • Performance counter (perfmon.msc) showed different metrics
  • when I used .NET memory profiler, it showed most of the memory is garbage collected and only few Live bytes.

I do not know which to believe.

5 Answers
Related