October 2005
Beginner
592 pages
15h 2m
English
After completing this chapter, you will be able to:
Manage system resources by using garbage collection.
Write code that runs when an object is finalized by using a destructor.
Release a resource at a known point in time in an exception-safe manner by writing a try/finally statement.
Release a resource at a known point in time in an exception-safe manner by writing a using statement.
You have seen in earlier chapters how to create variables and objects, and hopefully understand how memory is allocated when variables and objects are created (in case you cannot remember, value types are created on the stack, and reference types are given memory from the heap). Computers do not have infinite ...