Why does the memory usage of a .NET application se

2019-04-20 17:21发布

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?

1条回答
趁早两清
2楼-- · 2019-04-20 18:12

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

查看更多
登录 后发表回答