Marshal..::.SizeOf Method (Object) and sizeof() do not exist for objects in a managed language, right? I was trying to find how much memory is taken up by an array of ints, and I could not use sizeof or Marshal.SizeOf(), since apparently these functions are for
unmanaged code. With references and managed languages, what do...