CurrentDomain, GetAssemblies : Assembly « Reflection « C# / C Sharp






CurrentDomain, GetAssemblies

     


using System;
using System.Reflection;
using System.Globalization;

class MainClass
{
    public static void Main()
    {
        ListAssemblies();
        string name1 = "System.Data, Version=2.0.0.0," +"Culture=neutral, PublicKeyToken=b77a5c561934e089";
        Assembly a1 = Assembly.Load(name1);

        AssemblyName name2 = new AssemblyName();
        name2.Name = "System.Xml";
        name2.Version = new Version(2, 0, 0, 0);
        name2.CultureInfo = new CultureInfo("");    //Neutral culture.
        name2.SetPublicKeyToken(new byte[] {0xb7, 0x7a, 0x5c, 0x56, 0x19, 0x34, 0xe0, 0x89});
        Assembly a2 = Assembly.Load(name2);

        Assembly a3 = Assembly.Load("SomeAssembly");

        Assembly a4 = Assembly.LoadFrom(@"c:\shared\MySharedAssembly.dll");

        Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies(); 
        foreach (Assembly a in assemblies)
        {
            Console.WriteLine(a.GetName());
        }
    }
}

   
    
    
    
  








Related examples in the same category

1.Dynamically invoking methods from classes in an assembly.
2.Set AssemblyTitle, AssemblyDescription, AssemblyConfiguration, AssemblyCompany, AssemblyProduct
3.AssemblyCulture AssemblyVersion
4.Location of Assembly
5.GetReferencedAssemblies
6.Load assembly from namespace System.Xml
7.Create assemblyCreate assembly
8.Examining Location InformationExamining Location Information
9.Working with an Assembly Entry PointWorking with an Assembly Entry Point
10.Loading Assemblies Dynamically with Load() and LoadWithPartialName()Loading Assemblies Dynamically with Load() and LoadWithPartialName()
11.Finding and Creating Assembly Types
12.Retrieving a List of Referenced Assemblies
13.Simple Windows Form Application with Version InformationSimple Windows Form Application with Version Information
14.Find Attribytes from assembly nameFind Attribytes from assembly name
15.Get current application domainGet current application domain
16.List All Types from an AssemblyList All Types from an Assembly
17.List All Members from an AssemblyList All Members from an Assembly
18.Use Assembly to indicate the version and cultureUse Assembly to indicate the version and culture
19.new AssemblyName()
20.AssemblyName: Name, Version, CultureInfo, SetPublicKeyToken
21.Gets an assembly by its name if it is currently loaded
22.Get all modules from Assembly
23.Load and execute an assembly and Unload the application domain
24.GetNamespaces from Assembly
25.Load Embedded Font
26.Gets the Assembly in which the type is declared.
27.Gets the assembly-qualified name of the Type
28.Get Resource Assembly Type
29.Assembly Title
30.Assembly Copyright
31.Assembly Version
32.Get Assembly Path and Name
33.Get Resource from Assembly
34.Assembly Accessors
35.Assembly Utils
36.Get Assembly As Bytes
37.Loads a resource given an assembly-relative resource name and an anchor type.
38.Returns the path relative to the entry assembly
39.Returns the full assembly signature.
40.Add and Remove Assembly
41.Detects whether an assembly is implementing a specific interface or not.
42.Creates an instance of a class implementing a specific interface in a given assembly.
43.Get Application Path
44.Create Class from class name
45.Activator Utils