April 2002
Intermediate to advanced
1024 pages
23h 26m
English
In This Chapter
The .NET Framework in conjunction with the CLR eliminates a large class of errors either at runtime through automatic garbage collection and type checking or at compile time through type checking, access checks, and so on. However, a class of errors still remains that can only be handled and detected at runtime. For example, the CLR cannot know that you want to access a file that does not exist until you attempt to access it. Errors will always exist due to ...