Your MyClass object is a structure containing the reference to the 2 event handlere, if you want that specific instance to be garbage collected you need to unsubscribe to both event handlers. If you require a manual process to ensure this, implement the IDispose interface and call that method, that then ensured that event handlers are all unsubscribed.