How do I see memory allocation in a given .NET application?

好久不见. 提交于 2019-11-27 23:19:18

Using a PerformanceCounter you can query the "# Bytes in all Heaps", from your own process, and even other processes.

Use the Category ".Net CLR Memory" to see a lot of counters available.

You have to see what the difference in system load is between the PerformanceCounter and the GC.GetTotalMemory that is proposed by Jon Skeet.

Does GC.GetTotalMemory do everything you need?

(Note that SizeOf only tells you the marshalled size, too - not necessarily the size in memory.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!