June 2006
Intermediate to advanced
1344 pages
42h 52m
English
We begin with an example that consists of class GradeBook (Fig. 4.1) and module GradeBookTest (Fig. 4.2). Class GradeBook (declared in file GradeBook.vb) displays a message on the screen (Fig. 4.2) welcoming the instructor to the grade-book application. Module GradeBookTest (declared in file GradeBookTest.vb) contains the Main method that instantiates (creates) and uses an object of class GradeBook. The class and module are placed in separate files for clarity, but it is possible to place them in the same file.
1 ' Fig. 4.1: GradeBook.vb 2 ' Class declaration with one method. 3 Public Class GradeBook 4 ' display a welcome ... |
Read now
Unlock full access