July 2015
Intermediate to advanced
1300 pages
87h 27m
English
XML comments have a double purpose. The first one is enabling additional help within IntelliSense when you write code. The second one is generating an XML file storing information that can be built into a compiled documentation file, such as the .chm format that also enables navigation between documented items. In this section, you learn to implement XML comments and learn the various tags and why they are important, although in some cases they might not seem to be. Before implementing comments, create a new Console application and implement a Person class as follows:
Public Class Person Public Overridable Property FirstName As String Public Overridable Property LastName As String ...