Using the Static Code Analysis feature of Visual Studio (Premium/Ultimate) to find memory leakage problems
Memory for managed code is handled by the garbage collector, but if you use any kind of unmanaged code, like native resources of any kind, open files, streams and window handles, your application may leak memory if these are not properly handled. To handle such resources the classes that own these in your application should Continue Reading →