K
Keep it to Usenet please
I've inherited a service written in C# that will eventually become
non-responsive (Has to be "Force Quit" -- can't be stopped/restarted
from the Services Control Panel.). It really seems like what would be
a problem with Memory/Resource Management in C++ -- memory not being
freed, files not being closed, etc.. If this was C/C++, I'd use one
of the tried and trued malloc wrappers, custom
constructors/destructors, etc..
Other than a source code crawl to look for things that need to be
explicitly .Dispose()ed, is there a better way to track something like
this down?
non-responsive (Has to be "Force Quit" -- can't be stopped/restarted
from the Services Control Panel.). It really seems like what would be
a problem with Memory/Resource Management in C++ -- memory not being
freed, files not being closed, etc.. If this was C/C++, I'd use one
of the tried and trued malloc wrappers, custom
constructors/destructors, etc..
Other than a source code crawl to look for things that need to be
explicitly .Dispose()ed, is there a better way to track something like
this down?