January 2003
Beginner
696 pages
16h 38m
English
In the course of writing any type of computer program, three types of errors can crop up:
Syntax errors
Logic errors
Runtime errors
Let's look at how these errors occur and how you can avoid them.
Syntax errors occur when you misspell a variable name, object name, or reference an object incorrectly. Syntax errors are the easiest errors to avoid, because Visual Studio .NET lets you know if a keyword or variable is misspelled. If you're coding in Visual Basic, you can set the Option Explicit option on in your Project Properties dialog box, which tells Visual Studio .NET to make sure that all variables you use in your code are declared before they are referenced. This feature isn't available in C#, but ...
Read now
Unlock full access