Reputation: 51
I'm making a program on C# language, and one of my task it's write to the log file used RAM of the process of my program.
I used WorkingSet64
as someone advised me, but it showing so very different value from what is at the Task Manager.
How can i get the exact value as it showing in Task Manager ?
Upvotes: 3
Views: 1151
Reputation: 673
If you work on Visual Studio 2015, you can use the Performances profiler
In the debug
menu select:
Then select .Net memory allocation
Upvotes: 0