I'm using
I want to make sure that MyClassInstance is released from memory:
Does the MyArrayList.RemoveAt(index) call does it
or do i have to:
Visual Basic:
MyArrayList.Add(new MyClassInstance)
I want to make sure that MyClassInstance is released from memory:
Does the MyArrayList.RemoveAt(index) call does it
or do i have to:
Visual Basic:
MyArrayList(index)=nothing
MyArrayList.RemoveAt(index)