This chapter has covered some of the basic aspects of the language and the .NET Framework as preparation for diving into the deeper details. From here, the discussion moves on to the fundamental types that all programs use, such as Integer . Here are some style points to consider. -
Although the language is very relaxed in regard to casing, it is always a good idea to use correct casing because this increases the readability and understandability of code. The Visual Studio IDE will usually correct casing. -
In general, it is best to specify syntax even if it is optional. The Visual Studio IDE will usually insert optional syntax if it is omitted. -
In keeping with historical precedent, the word REM can also be used to start a comment, but its use is discouraged. |