InterviewSolution
Saved Bookmarks
| 1. |
Should I Make My Destructor Virtual? |
|
Answer» A C# destructor is REALLY just an OVERRIDE of the System.Object FINALIZE method, and so is VIRTUAL by definition. A C# destructor is really just an override of the System.Object Finalize method, and so is virtual by definition. |
|