G
Gaurav Vaish
How do you force destruction of an object?
Will a simple "someObj = null" suffice?
-----
MyType someObj = new MyType();
...
...
someObj = null; // <= Will this call the destructor?
-----
--
Happy Hacking,
Gaurav
http://gvaish.virtualave.net
--------------------------------
Will a simple "someObj = null" suffice?
-----
MyType someObj = new MyType();
...
...
someObj = null; // <= Will this call the destructor?
-----
--
Happy Hacking,
Gaurav
http://gvaish.virtualave.net
--------------------------------