Type.Assembly Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the Assembly in which the type is declared. For generic types, gets the Assembly in which the generic type is defined.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property Assembly As Assembly
public abstract Assembly Assembly { get; }

Property Value

Type: System.Reflection.Assembly
An Assembly instance that describes the assembly containing the current type. For generic types, the instance describes the assembly that contains the generic type definition, not the assembly that creates and uses a particular constructed type.

Remarks

If the current Type object represents a constructed generic type, this property returns the assembly that contains the generic type definition. For example, suppose you create an assembly named MyGenerics.dll that contains the generic type definition MyGenericStack<T> (MyGenericStack(Of T) in Visual Basic, generic<T> ref class MyGenericStack in C++). If you create an instance of MyGenericStack<int> (MyGenericStack(Of Integer) in Visual Basic) in another assembly, the Assembly property for the constructed type returns an Assembly object that represents MyGenerics.dll.

Similarly, if the current Type object represents an unassigned generic parameter T, this property returns the assembly that contains the generic type that defines T.

This property is read-only.

Examples

The following example displays the assembly name associated with the class and the fully qualified name of the type.

Imports System.Reflection
Class Example
   Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
      Dim objType As Type = GetType(System.Array)
      ' Print the full assembly name.
      outputBlock.Text += String.Format("Full assembly name: {0}.", objType.Assembly.FullName.ToString()) & vbCrLf
      ' Print the qualified assembly name.
      outputBlock.Text += String.Format("Qualified assembly name: {0}.", objType.AssemblyQualifiedName.ToString()) & vbCrLf
   End Sub 'Main
End Class 'MyAssemblyClass
using System;
using System.Reflection;

class Example
{

   public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {
      Type objType = typeof(System.Array);

      // Print the full assembly name.
      outputBlock.Text += String.Format("Full assembly name: {0}.", objType.Assembly.FullName.ToString()) + "\n";

      // Print the qualified assembly name.
      outputBlock.Text += String.Format("Qualified assembly name: {0}.", objType.AssemblyQualifiedName.ToString()) + "\n";
   }
}

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference