Get Executing Assembly : Assembly « Reflection « VB.Net






Get Executing Assembly

Get Executing Assembly
  
Imports System.Reflection


Public Class MainClass

    Public Shared Sub Main()
        Dim ThisAssembly As [Assembly] = [Assembly].GetExecutingAssembly()

        Dim Attr As Attribute
        For Each Attr In ThisAssembly.GetCustomAttributes(False)
            Console.WriteLine(Attr)
        Next

    End Sub

End Class


           
         
    
  








Related examples in the same category

1.Add all Public Assembly Form TypeAdd all Public Assembly Form Type
2.View all Assembly Form Type in a TreeView all Assembly Form Type in a Tree
3.View all Assembly Form Type and its members in a Tree
4.Find Members with Binding FlagsFind Members with Binding Flags
5.Get Assembly Member type: Property or Member Get Assembly Member type: Property or Member
6.Load all Types in one AssemblyLoad all Types in one Assembly
7.Get Class Name in Current AssemblyGet Class Name in Current Assembly
8.Get Information from AssemblyGet Information from Assembly
9.Get info for current AppDomain
10.Hook into DomainUnload event
11.Programmatically make a new app domain
12.Assembly Class represents an assembly
13.The AssemblyName type can be used to parse the full name
14.Create an object from the assembly, passing in the correct number and type of arguments for the constructor
15.Get the version of the executing assembly (that is, this assembly).
16.Get the version of the current application.
17.Get the version of a specific assembly.
18.Using AssemblyVersionAttribute
19.Create AssemblyName class with the specified display name.
20.AssemblyName.GetAssemblyName gets the AssemblyName for a given file.
21.AssemblyName.Version gets or sets the major, minor, build, and revision numbers of the assembly.
22.Assembly.FullName gets the display name of the assembly.
23.Assembly.GetCallingAssembly returns the Assembly of the method that invoked the currently executing method.
24.Assembly.GetExecutingAssembly gets the assembly that contains the code that is currently executing.
25.Assembly.GetExportedTypes gets the public types defined in this assembly that are visible outside the assembly.
26.Assembly.GetTypes gets the types defined in this assembly.
27.Assembly.IsDefined tells whether or not a specified attribute has been applied to the assembly.
28.Assembly.Load loads an assembly given the long form of its name.
29.Assembly.Location Property gets the path or UNC location of the loaded file that contains the manifest.
30.The version of mscorlib.dll