Hi, > On 30 Nov 2015, at 11:40, Dimitris Chloupis <[email protected]> wrote: > > I am wondering when an instance of a class is garbage collected and deleted > from the system. > > is there a way to manually deleted it ?
no, that beats the purpose of a garbage collector. but… it should be cleaned quite fast, if it is not, most probably you are keeping a reference somewhere. Esteban
