Mega Code Archive

 
Categories / VB.Net / Reflection
 

Type Assembly Property

Imports System Imports System.Reflection Imports Microsoft.VisualBasic Class MyAssemblyClass     Public Shared Sub Main()         Dim objType As Type = GetType(System.Array)         Console.WriteLine("Full assembly name: {0}.", objType.Assembly.FullName.ToString())         Console.WriteLine("Qualified assembly name: {0}.", objType.AssemblyQualifiedName.ToString())     End Sub  End Class