June 2006
Intermediate to advanced
1344 pages
42h 52m
English
We have seen that classes from preexisting libraries, such as .NET’s Framework Class Library (FCL), can be imported into Visual Basic applications. Each class in the FCL belongs to a namespace that contains a group of related classes. Class libraries and namespaces facilitate software reuse by enabling applications to add classes from other namespaces (as we have done in most examples). This section demonstrates how to create your own class libraries for reuse.
Before a class can be imported into multiple applications, it must be placed in an assembly to make it reusable. The steps for creating an assembly are as follows:
Create a Class Library project.
Add the reusable ...
Read now
Unlock full access