This chapter covers special members that a .NET custom data type should implement.
Special Members
Previous chapters discussed methods that we should override (or not) for our .NET custom data types. This section examines internal aspects of members that are not so “special” from a Control Language Runtime (CLR) Virtual Execution System (VES) perspective, as we have with a constructor. This chapter focuses specifically on destructors.
Special Member Destructor
Like constructors, destructors are also special members for the CLR VES and managed platform as a whole, ...