Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For example, launch Paint.NET. Then have a look on its memory usage with Task Manager: on my computer, it uses 36Mb.

Then minimize Paint.NET: now it takes only a few more than 1Mb.

This happens with every .NET Application. What happens when a .NET Application is minimized? Is a GC occurring?

share|improve this question

1 Answer

up vote 25 down vote accepted

Task Manager shows you the amount of memory belonging to the application that happens to be paged into real memory at the time. When you minimise an application in Windows, the kernel automatically trims the process working set so it takes less memory. This behaviour is not specific to .NET apps.

If you look instead at the process "Private Bytes" value, this will give you a better indication of the amount of memory used by a process. This value will not change when the process working set is trimmed.

Microsoft offers more information at this knowledgebase article: http://support.microsoft.com/kb/293215

share|improve this answer
you are a wizard. – Haoest Oct 6 '08 at 21:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.