Mega Code Archive

 
Categories / VB.Net / Reflection
 

Type FullName gets the fully qualified name of the Type

Imports System Public Class Base(Of TBase) End Class Public Class Derived(Of TDerived)     Inherits Base(Of TDerived) End Class Class TestFullName     Public Shared Sub Main()         Dim t As Type = GetType(Array)         Console.WriteLine("The full name of the Array type is {0}.", t.FullName)     End Sub  End Class