new AssemblyName() : Assembly « Reflection « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Reflection » AssemblyScreenshots 
new AssemblyName()
   

using System;
using System.Reflection;
using System.Collections.Generic;

class MainClass
{
    public static void Main(string[] args)
    {

        AssemblyName assembly1 = new AssemblyName("com.microsoft.crypto, Culture=en, PublicKeyToken=a5d015c7d5a0b012, Version=1.0.0.0")

        Dictionary<string, AssemblyName> assemblyDictionary = new Dictionary<string, AssemblyName>();
        assemblyDictionary.Add("Crypto", assembly1);
        AssemblyName ass1 = assemblyDictionary["Crypto"];
        Console.WriteLine("Got AssemblyName from dictionary: {0}", ass1);

        List<AssemblyName> assemblyList = new List<AssemblyName>();
        assemblyList.Add(assembly1);
        AssemblyName ass2 = assemblyList[0];
        Console.WriteLine("\nFound AssemblyName in list: {0}", ass1);

        Stack<AssemblyName> assemblyStack = new Stack<AssemblyName>();
        assemblyStack.Push(assembly1);
        AssemblyName ass3 = assemblyStack.Pop();
        Console.WriteLine("\nPopped AssemblyName from stack: {0}", ass1);
     }
}

   
    
  
Related examples in the same category
1.CurrentDomain, GetAssemblies
2.Dynamically invoking methods from classes in an assembly.
3.Set AssemblyTitle, AssemblyDescription, AssemblyConfiguration, AssemblyCompany, AssemblyProduct
4.AssemblyCulture AssemblyVersion
5.Location of Assembly
6.GetReferencedAssemblies
7.Load assembly from namespace System.Xml
8.Create assemblyCreate assembly
9.Examining Location InformationExamining Location Information
10.Working with an Assembly Entry PointWorking with an Assembly Entry Point
11.Loading Assemblies Dynamically with Load() and LoadWithPartialName()Loading Assemblies Dynamically with Load() and LoadWithPartialName()
12.Finding and Creating Assembly Types
13.Retrieving a List of Referenced Assemblies
14.Simple Windows Form Application with Version InformationSimple Windows Form Application with Version Information
15.Find Attribytes from assembly nameFind Attribytes from assembly name
16.Get current application domainGet current application domain
17.List All Types from an AssemblyList All Types from an Assembly
18.List All Members from an AssemblyList All Members from an Assembly
19.Use Assembly to indicate the version and cultureUse Assembly to indicate the version and culture
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
w_w_w_.ja__v_a2_s___.c___o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.