Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.3 KB

File metadata and controls

30 lines (23 loc) · 1.3 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Assembly (Visual Basic)
Assembly
07/20/2015
vb.Assembly
vb.AssemblyAttribute
Assembly
Assembly modifier
Assembly keyword [Visual Basic]
attribute blocks, Assembly keyword
925e7471-3bdf-4b51-bb93-cbcfc6efc52f

Assembly (Visual Basic)

Specifies that an attribute at the beginning of a source file applies to the entire assembly.

Remarks

Many attributes pertain to an individual programming element, such as a class or property. You apply such an attribute by attaching the attribute block, within angle brackets (< >), directly to the declaration statement.

If an attribute pertains not only to the following element but to the entire assembly, you place the attribute block at the beginning of the source file and identify the attribute with the Assembly keyword. If it applies to the current assembly module, you use the Module keyword.

You can also apply an attribute to an assembly in the AssemblyInfo.vb file, in which case you do not have to use an attribute block in your main source-code file.

See also