Tuesday, 29 March 2016

difference between “finalize” and “finally” methods in C#?

  • Finalize – This method is used for garbage collection. So before destroying an object this method is called as part of clean up activity.
  • Finally – This method is used for executing the code irrespective of exception occurred or not

No comments:

Post a Comment