C# internally generates a base.finalize() call when you use the destrutor syntax. Though most people do not know about this, it still save a lot of possible leaks.
VB.NET did not have this feature and you had to manually put this in. The IDE puts in a MyBase.Finalize when you choose the finalize method from the dropdown.
But the problem is, what happens if I just type the sub definition?? No code is inserted. Likewise, since code is just inserted, someone can delete it too and this may lead to a problem.
The same holds good in the new Whidbey Technical Preview version too!!!
I would prefer if VB.NET also generates internal code to call the base finalizer....
Paul, Will my wish come true????