Memory Problem

  • Thread starter Thread starter Zyrthofar Blackcloak
  • Start date Start date
Z

Zyrthofar Blackcloak

Hi
I have a rather annoying problem, and I have no idea how to solve it.

I have built a small TicTacToe program... It only takes 24kb, but when
I run it, it takes 8 Megs of memory. There is absolutely nothing in my
program that would take that much space, and I also took the unused
imports off... I don't know what I should do...

Thank you
 
Do you use GDI+ in your application?
It is best to always dispose the graphics object after using it.

Regards,

--

Nico Debeuckelaere

ND-Sign BVBA (Microsoft Certified Partner since 2004)
Pierstraat 135
B-2840 Rumst
URL: http://www.nd-sign.com
== ND-Sign, Designed for you ==
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
* Zyrthofar Blackcloak said:
I have a rather annoying problem, and I have no idea how to solve it.

I have built a small TicTacToe program... It only takes 24kb, but when
I run it, it takes 8 Megs of memory. There is absolutely nothing in my
program that would take that much space, and I also took the unused
imports off... I don't know what I should do...

8 MB are no reason to worry about. Remember that the CLR and some other
libraries will have to be loaded too.
 
Back
Top