Pretty much any Visual Basic project creates an assembly. If you're creating controls and objects, then simply choosing Windows Control Library will be sufficient. An assembly contains types which are organised in namespaces, but many assemblies can contain the same namespaces, although not the same types. The creation of classes is fundamental to .NET, any code you write is inside an object type.
|