Create assembly : 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.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Reflection » AssemblyScreenshots 
Create assembly
Create assembly
 

using System;
using System.Reflection;
using System.Reflection.Emit;

class CodeGenerator {       
    Type t;
    public static void Main() {
       CodeGenerator codeGen = new CodeGenerator();
       Type t = codeGen.T;

       if (t != null) {
          object o = Activator.CreateInstance(t);
          MethodInfo helloWorld = t.GetMethod("HelloWorld");
          if (helloWorld != null) {
             // Run the HelloWorld Method
             helloWorld.Invoke(o, null);
          else {
             Console.WriteLine("Could not retrieve MethodInfo");
          }
       else {
             Console.WriteLine("Could not access the Type");
       }
    
    public CodeGenerator() {
       AppDomain currentDomain = AppDomain.CurrentDomain;

       AssemblyName assemName = new AssemblyName();
       assemName.Name = "MyAssembly";

       AssemblyBuilder assemBuilder = currentDomain.DefineDynamicAssembly(assemName, AssemblyBuilderAccess.Run);

       ModuleBuilder moduleBuilder = assemBuilder.DefineDynamicModule("MyModule");

       TypeBuilder typeBuilder = moduleBuilder.DefineType("MyClass",TypeAttributes.Public);

       MethodBuilder methodBuilder = typeBuilder.DefineMethod("HelloWorld", MethodAttributes.Public,null,null);

       ILGenerator msilG = methodBuilder.GetILGenerator();
       msilG.EmitWriteLine("www.java2java.com");
       msilG.Emit(OpCodes.Ret);

       t = typeBuilder.CreateType();
   }
   public Type T {
       get 
         return this.t;
       }
   }
}


           
         
  
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.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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.