May 2010
Intermediate to advanced
1272 pages
61h 18m
English
Modules are a specific feature of Visual Basic programming language. You can think of modules as classes exposing only shared members; each module is defined within a Module..End Module code block. The following code provides an example of a module:

Differently from Visual C#, Visual Basic does not directly support shared classes, whereas it provides support for classes with only shared members. According to this, the preceding module is the Visual Basic representation of the following class:

If you had any other member in this ...
Read now
Unlock full access