What is the purpose of Finalize method?
Explanation
Finalize method allows for correct object destruction before the garbage collector frees the memory occupied by an object. Method's syntax:
 
class SomeClass
 { 
      //Finalize method
      ~SomeClass()
       {
        } 
}
 
In earlier specifications Finalize method was itself called a destructor, but unlike unmanaged destructors in C++, it is not used for the deterministic objects' destruction.

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты