Destructors

  • Thread starter Thread starter Mythran
  • Start date Start date
M

Mythran

In C#/C++, you can use the following (almost the same for both) for
destructors:

// Constructor
public ClassNameHere()
{

}

// Destructor:
~ClassNameHere()
{

}

In VB.Net, is Finalize() method the destructor method?

Thanks,
Mythran
 
Back
Top