Does .Net has garbage collector or I have to free (Set myVariable = Nothing)
each object I created with "New"?
Mick Wilson - 27 Mar 2008 15:22 GMT
> Does .Net has garbage collector or I have to free (Set myVariable = Nothing)
> each object I created with "New"?
.Net has a garbage collector.
http://msdn2.microsoft.com/en-us/library/ms973837.aspx
Aidy - 27 Mar 2008 15:23 GMT
> Does .Net has garbage collector
Yes.
> or I have to free (Set myVariable = Nothing) each object I created with
> "New"?
No.