I don't use unmanaged variables in appilcation so I expect GC to do work for
me and take care about destroing the objects.
When I start that exe assembly I got process in memory for this application
~32MB.
Is this memory usage for this kind of application normal!? For me it's looks
like too much memory. When I load image in kodak control process grows to
~45MB.
Where I'm wrong!? I don't think that tis useage of memory is normal even for
.NET app.
When I minimize app process gets unbelivable 600KB of memory useage. What's
going on!?
Would you help me please and tell me how to limit this 45MB to something
smaller and how to use GC when I use only managed variables!? Should I
derive all Artifacts, Businessruless and Standardization classes from
IDisposable and override Dispose method for all classes which I will call
after I finished with some object from that classes?
regards
Vasko
Here's one search:
http://groups.google.com/groups?sourceid=navclient&hl=en&ie=UTF-8&oe=UTF-8&q=dotnet+memory+usage+working+set
You only need dispose if you have unmanaged resources or objects that use
unmanaged resources. Otherwise it's pointless.
-mike
MVP
"Vasil Buraliev" <pha...@mol.com.mk> wrote in message
news:eIdY8sw6...@TK2MSFTNGP10.phx.gbl...
"Michael Giagnocavo [MVP]" <mggU...@Atrevido.net> wrote in message
news:#coijxy6...@TK2MSFTNGP12.phx.gbl...