C
Craig
Newbie C# developer question:
class myStuff
{
private System.Object o;
public void doWork()
{
o = new Sytem.Object;
}
}
Will the GC take care of cleaning up the resource myStuff.o is using when
the myStuff object goes out of scope?
Craig
class myStuff
{
private System.Object o;
public void doWork()
{
o = new Sytem.Object;
}
}
Will the GC take care of cleaning up the resource myStuff.o is using when
the myStuff object goes out of scope?
Craig