up vote 14 down vote favorite
5
share [g+] share [fb]

I need to know how much bytes my object consumes in memory (in C#). for example how much my hashtable, or SortedList, or List.

link|improve this question

Duplicate of stackoverflow.com/questions/324053/… and probably others. – Jon Skeet Mar 3 '09 at 9:12
I second, closing this and look for already given answers. Both suggested by Jon are viable. – John Leidegren Mar 3 '09 at 9:18
thirded, but offensive? – annakata Mar 3 '09 at 9:49
feedback

8 Answers

up vote 4 down vote accepted

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.

link|improve this answer
+1: A DataTable is 80 bytes, and then all the data it references, which is likely to be many orders of magnitude more. – Richard Mar 3 '09 at 9:54
feedback

this may not be accurate but its close enough for me

long size = 0;
object o = new object();
using (Stream s = new MemoryStream()) {
    BinaryFormatter formatter = new BinaryFormatter();
    formatter.Serialize(s, o);
    size = s.Length;
}
link|improve this answer
5  
+1 "this may not be accurate but its close enough for me" – Achilles Nov 29 '10 at 15:25
3  
This will put so much more. It adds the DLL name and version, ... this is not a way to calculate object size. – Aliostad Nov 1 '11 at 14:36
@Aliostad why don't you post the answer then? – rushonerok Nov 17 '11 at 16:02
@rushonerok did you leave a votedown on my RIA question because of this? – Aliostad Nov 17 '11 at 16:48
See my answer.. – Aliostad Nov 17 '11 at 16:54
show 5 more comments
feedback

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.

See here for a similar question

link|improve this answer
+1 was good enough for me! – Chris Marisic Sep 29 '11 at 18:52
feedback

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.

    /// <summary>
    /// Calculates the lenght in bytes of an object 
    /// and returns the size 
    /// </summary>
    /// <param name="TestObject"></param>
    /// <returns></returns>
    private int GetObjectSize(object TestObject)
    {
        BinaryFormatter bf = new BinaryFormatter();
        MemoryStream ms = new MemoryStream();
        byte[] Array;
        bf.Serialize(ms, TestObject);
        Array = ms.ToArray();
        return Array.Length;
    }
link|improve this answer
feedback

Unmanaged object:
   - Marshal.SizeOf(object yourObj);
Value Types:
   - sizeof(object val)
Managed object:
   - Looks like there is no direct way to get for managed objects, Ref: http://blogs.msdn.com/cbrumme/archive/2003/04/15/51326.aspx

link|improve this answer
feedback

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.

link|improve this answer
1  
Marshal.SizeOf or sizeof won't help you getting the size for reference types. – Rune Grimstad Mar 3 '09 at 9:16
feedback

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:

Now, how do we calculate the memory requirement for our cached objects? Well, as most of you would know, Int32 and float are four bytes, double and DateTime 8 bytes, char is actually two bytes (not one byte), and so on. String is a bit more complex, 2*(n+1), where n is the length of the string. For objects, it will depend on their members: just sum up the memory requirement of all its members, remembering all object references are simply 4 byte pointers on a 32 bit box. Now, this is actually not quite true, we have not taken care of the overhead of each object in the heap. I am not sure if you need to be concerned about this, but I suppose, if you will be using lots of small objects, you would have to take the overhead into consideration. Each heap object costs as much as its primitive types, plus four bytes for object references (on a 32 bit machine, although BizTalk runs 32 bit on 64 bit machines as well), plus 4 bytes for the type object pointer, and I think 4 bytes for the sync block index. Why is this additional overhead important? Well, let’s imagine we have a class with two Int32 members; in this case, the memory requirement is 16 bytes and not 8.

link|improve this answer
feedback

In debug mode

load SOS

and execute dumpheap command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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