In .NET there are 8 bytes of overhead for each object. 4 bytes are a pointer to the object's type. What are the other 4 bytes, known as the object header, used for?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 5 down vote accepted

This article discusses a lot of internals, including what goes into each object instance. Basically, it's the type information and a syncblock pointer (because ever object can potentially be locked upon)

link|improve this answer
2  
Syncblock index, not pointer. It can also store the hash code, depending on usage. Plus several GC related bits. – Hans Passant Mar 24 '10 at 12:57
feedback

Your Answer

 
or
required, but never shown

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