During the course of today I have noticed a considerable degredation in
system performance. On checking task manager I have found a process
("agent.exe") that is running and gradually using more and more memory.
Having checked MSCONFIG this would not appear to be a start-up process.
However,...
more >>
I'm looking into a production issue related to a windows service and
System.Timers.Timer. The background is the windows service uses a
System.Timers.Timer to periodically poll a directory location on a
network for files and then copies these files to another location (on
the network) AND then up...
more >>
I have written a C# program that builds a move tree for the game of
Checkers. Such a move tree is naturally a very large data structure.
When I run the program on a 64-bit machine with 8GB of RAM, the move
tree (correctly) grows to several GB in size.
What I expect to happen is that the tree k...
more >>
GC.Collect() not cleaning memory, how to find out what references to lots of
memory still exist?
When all my processign is done i set everything to null and then:
GC.Collect();
and then
GC.WaitForPendingFinalizers();
but it still shows that my process takes 400 MB of memory. Is there any ea...
more >>
Hello
Have a huge XML file with multitudes of "LogEntry" nodes / text
lines.
A small sample of this xml/text content is below.
The file could be anywhere between 200 to 2000 MB.
My questions comes in two parts.
(A)
I would like a solution (or ideas for it), in C#, -- to randomly
access ...
more >>