How can I track the memory allocations in C++, especially those done by new/delete. For an object, I can easily override the operator new, but I’m not sure how to globally override all allocations so they go through my custom new/delete. This should be not a big problem, but I’m not sure how this is […]
Category: c++
Do I need to dispose a web service reference in ASP.NET?
Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I’m finished calling whatever method I call?