Unmanaged memory leaks in C# Contents Why do unmanaged memory leaks happen in a .NET application? Symptoms of memory leaks How to fix unmanaged memory leaks in a C# application? How to find memory leaks …
Continue readingTag: C
C Memory Analysis Tools
Why do you need C memory analysis tools? Developers who write in C know how important it is to manage memory properly. Unlike languages such as C++ that can free memory implicitly or .NET languages …
Continue readingMemory leaks detection in a Windows Service written in C++
Introduction This article will demonstrate how to find memory leaks in a windows service written in C++ or plain C. Windows service is a special kind of application, that runs in the background and follows …
Continue reading