vote up 0 vote down star

I would like to be able to know, in run-time in my code, how much memory a certain object is taking (a Dataset in this case, but i'm looking for a "general" solution).

Is this possible through reflection?

This is for .Net 2.0.

Thanks!

flag

69% accept rate

3 Answers

vote up 0 vote down
int size = Marshal.SizeOf(typeof(int));

That should work too.

link|flag
Not for an object, only for a struct. – Jon B Oct 22 '08 at 20:53
vote up 0 vote down check

Great, so to sumarize, there is no easy way, other than using the Profiling API which is a lot of work. Thanks!

link|flag

Your Answer

Get an OpenID
or

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