vote up 4 vote down star

I'm looking for a way to get the size of an instance of a reference type. sizeof is only for value types. Is this possible?

flag

4 Answers

vote up 2 vote down check

If you don't mind it being a little less accurate than perfect, and for comparative purposes, you could serialize the object/s and measure that (in bytes for example)

EDIT (I kept thinking after posting): Because it's a little more complicated than sizeof for valuetypes, for example: reference types can have references to other objects and so on... there's not an exact and easy way to do it that I know of...

link|flag
vote up 0 vote down

It's not a problem, just a curiosity exercise. I have a bunch of items going into HttpContext.Items throughout a request, and I was just curious how much memory they were taking up (if it even matters). I'm going through a "measure everything" phase.

link|flag
vote up 0 vote down

Beware that Marshal.SizeOf is for unsafe code...

I don't think it's possible for managed code though, maybe you can explain your problem, there may be another way to solve it

link|flag
vote up 8 vote down

You need Marshal.SizeOf

Edit: This is for unsafe code, but then, so is sizeof().

link|flag
1  
Marshal.SizeOf might return a different number of bytes than the number used. – Thomas Bratt May 3 at 20:16

Your Answer

Get an OpenID
or

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