Dan Lyke’s .NET GC Woes
It looks like Dan Lyke is having some problems with garbage collection under .NET: it would be nice if one could do something like ctrl.Image.Dispose(); ctrl.Image=null rather than temp=ctrl.Image; ctrl.Image=null; temp.Dispose() without causing the runtime environment to give one the hairy eyeball.