Re: What has managed code achieved?
Tom,
You know that in VB.Net the object is not removed by either dispose or
setting it to nothing.
That is done by the Garbage Collector
As you really want to remove the object that has no references anymore then
you have to startl the GC.
I believe that this is only done by persons who still thinking in the style
of the 128Kb memory computers.
Cpr
Tom,
>
With module level values, then in both VB6 and VB.NET you must explicitly
set
the object to nothing (or set it to a new reference) if you want the
object to
go away before the program terminates. Oops, in VB.NET you might have to
also
call dispose on that object.
>
With module level values, then in both VB6 and VB.NET you must explicitly
set
the object to nothing (or set it to a new reference) if you want the
object to
go away before the program terminates. Oops, in VB.NET you might have to
also
call dispose on that object.
>
setting it to nothing.
That is done by the Garbage Collector
As you really want to remove the object that has no references anymore then
you have to startl the GC.
I believe that this is only done by persons who still thinking in the style
of the 128Kb memory computers.
Cpr
Comment