From: Sebastian Hungerecker Date: 2008-07-13T21:54:05+09:00 Subject: Re: Are not used Objects cleaned from memory? IƱaki Baz Castillo wrote: > If I have an Array containing custom complex objects and I use Array.delete > or any other function that deletes a element of the Array, will be the > deleted Object remain in RAM memory? or will it automatically deleted? Assuming the object is not referenced in any other way it will be garbage collected. HTH, Sebastian