Where can I find an explanation of how C# Apps handle memory when they launch? I think I have a problem with a simple executable that seems to be use more and more memory the longer it runs.
Thanks.
Printable View
Where can I find an explanation of how C# Apps handle memory when they launch? I think I have a problem with a simple executable that seems to be use more and more memory the longer it runs.
Thanks.
You can find out about garbage collection here:
http://msdn.microsoft.com/en-us/library/ms973837.aspx
But it is more likely that you've written something that is causing a memory leak. It would be easier to guess if you could show your code.