Possible Duplicate:
Find size of object instance in bytes in c#
I need to know how much bytes my object consumes in memory (in C#). for example how much my hashtable, or SortedList, or List.
I need to know how much bytes my object consumes in memory (in C#). for example how much my hashtable, or SortedList, or List. |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Any container is a relatively small object that holds a reference to some data storage (usually an array) outside the actual container object - and that in turn holds references to the actual objects you added to the container. So the question how much memory a List takes is not even well defined - the size of the list object itself, memory allocated by the list object, total size for everything in the list and the amount of memory that will be freed when the list is collected are all different values. |
|||
|
|
this may not be accurate but its close enough for me
|
|||||||||||||||||||
|
|
I don't think you can get it directly, but there are a few ways to find it indirectly. One way is to use the GC.GetTotalMemory method to measure the amount of memory used before and after creating your object. This won't be perfect, but as long as you control the rest of the application you may get the information you are interested in. Apart from that you can use a profiler to get the information or you could use the profiling api to get the information in code. But that won't be easy to use I think. |
|||
|
|
|
The following code fragment should return the size in bytes of any object passed to it, so long as it can be serialized. I got this from a colleague at Quixant to resolve a problem of writing to SRAM on a gaming platform. Hope it helps out. Credit and thanks to Carlo Vittuci.
|
|||||
|
|
Unmanaged object: |
||||
|
|
|
OK, this question has been answered and answer accepted but someone asked me to put my answer so there you go. First of all, it is not possible to say for sure. It is an internal implementation detail and not documented. However, based on the objects included in the other object. Now, how do we calculate the memory requirement for our cached objects? I had previously touched this subject in this article:
|
|||
|
|
|
You can try the Marshal.SizeOf method and sizeof keyword. Not sure if they'll work on HashTables etc, but give it a go...it may work. |
|||||
|