Minimizing an app frees memory ?

  • Thread starter Thread starter cybertof
  • Start date Start date
C

cybertof

Hello,

I have a simple c# app.

At first launch, It takes 30Mb once launched.
If i minimize it, it only takes 1380 Kb
If i maximize it back, it stays near to 2600 Kb,
and never goes back to 30Mb.

How do you explain this ?
 
i noticed the same thing today:
starts with about 28 mb, when minimized falls to 2 mb, when maximized it
rises to 6 mb and with some use it reaches at most about 17 mb..
i am looking forward to answers..
 
The memory usage is not reduced. It's just that most of the physical
memory (RAM) is swapped to the hard drive.

In the task manager. try adding the "VM Size" column to the Process tab.
When you minimize your app, you'll see that the "Mem Usage" goes down
but not "VM Size". "VM Size" means the Virtual Memory of the process.
It's called virtual because it represents both the physical memory the
process currebntly uses and the memory that is swapped to disk.

hope this helps

Alexandre Leduc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top