Y Yu Oct 24, 2003 #1 Hi, Can anyone tell me how I can mark an object for garbage collection in vb.net? Thanks, Yu
H Herfried K. Wagner [MVP] Oct 24, 2003 #2 * "Yu said: Can anyone tell me how I can mark an object for garbage collection in vb.net? Click to expand... Remove the references which point to the object.
* "Yu said: Can anyone tell me how I can mark an object for garbage collection in vb.net? Click to expand... Remove the references which point to the object.
S solex Oct 24, 2003 #3 In addition to removing the references that are pointing to the object Setting it equal to Nothing will also mark it for GC. Dan
In addition to removing the references that are pointing to the object Setting it equal to Nothing will also mark it for GC. Dan