R
Ramona van Riet
How can I find out what the *instance* size of an object is? I know i can
use sizeof() on value types, but using it on an objhect reference only
gives me 4, which simply means that the reference is a 4 byte pointer.
How can I find out how big the referenced object is, i.e. the total size
of all private, protected and public members and hidden members, like
virtual method tables, interface reference tables, etc.? I have browsed
the online help, but couldn't find anything yet.
use sizeof() on value types, but using it on an objhect reference only
gives me 4, which simply means that the reference is a 4 byte pointer.
How can I find out how big the referenced object is, i.e. the total size
of all private, protected and public members and hidden members, like
virtual method tables, interface reference tables, etc.? I have browsed
the online help, but couldn't find anything yet.