Gets the size of the currently allocated managed memory.
That is the memory that is handled by the garbage collector.
Syntax: GCAllocatedMemory
Example:
Sub App_Start
hw.new1 'hw is a Hardware object.
Msgbox("Allocated memory: " & hw.GCAllocatedMemory)
End Sub