Closing your Database Connections
Sometimes working with a managed language like C# can make you lazy. Having cut my programmers teeth on C++, I learned very early that if you “new” something you must also “delete” it. Forget and you get a memory leak.
After moving to C#, however, I occasionally become complacent and begin to think that the garbage […]