0

I'm looking for an accurate way to measure memory usage of a C# program under Windows operating system. I'm using Visual Studio for programming my code and I want to know its time consuming for performance. Really, I tried to use the Task Manager, but I do not get an accurate measurment.

Please, if any one know an accurate way to measure the memory consumption, please help me and thanks alot

Duaa
  • 171
  • 2
  • 7

1 Answers1

1

In order to measure memory usage, you'll need to use a profiler. You can head over to this SO question: "What are some good .NET profilers?" to receive all the information you could want on profiling tools. Head to their respective websites to learn how to use them.

Community
  • 1
  • 1
JasCav
  • 34,458
  • 20
  • 113
  • 170