Memory Usage

vidiware

Freshman
Joined
Dec 3, 2002
Messages
39
How do you drop the memory usage down???
A blank frame application is using massive 14000k memory vs a Delphi 7 applications 3-4000k...
Do you have any ideas how to drop it?
 
.NET applications use up memory extensively when it is there to be taken. If you're short of memory, it will take less. It does this because garbage collection is expensive cpu-wise. Rest assured if you get short of memory it will be reclaimed.

The only thing you actively need to do is to remember to call Dispose on those objects that support it when you're done with them, assuming you created them.
 
Back
Top