vidiware Posted May 26, 2003 Posted May 26, 2003 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? Quote
*Gurus* divil Posted May 26, 2003 *Gurus* Posted May 26, 2003 .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. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.