MemberInfo Class contains information about the attributes of a member : MethodInfo « Reflection « VB.Net
- VB.Net
- Reflection
- MethodInfo
MemberInfo Class contains information about the attributes of a member
Imports System
Imports System.Reflection
Module Module1
Sub Main()
Dim a As [Assembly] = System.Reflection.Assembly.GetExecutingAssembly()
Console.WriteLine(a.FullName)
Console.WriteLine(a.CodeBase)
End Sub
End Module
Related examples in the same category