Daily Power Ups

Recent Posts Widget

Monday, February 1, 2016

The C# Garbage Collector isn't quite like your Java Garbage Collector

In C#, remember the Garbage collector isn't quite like the Java Garbage Collector's in that it still relies on you the owner to explicitly mark certain items as ready for collection.   Some of this is done by calling the dispose method, removing an event listener assignment, unmarshaling and/or unadvising COM objects.

No comments:

Post a Comment