SIGN UP MEMBER LOGIN:    
Blog

Tip of the day : Create dynamically an assembly in the current domain

Posted by Bechir Bejaoui Blogs | C# Assemblies Jul 05, 2008
Create dynamically an assembly in the current domain

if you want to create an assembly dynamically in the current domain, this is a method to perform this:

using System;

using System.Reflection;

using System.Reflection.Emit;

namespace yourProjectname

{

    class Program

    {

        static void Main(string[] args)

        {

            try

            {

                //Define an assembly name

                AssemblyName oAssemblyName = new AssemblyName("myAssembly");

                //Build the assembly

                AssemblyBuilder oAssBuilder =

                    AppDomain.CurrentDomain.DefineDynamicAssembly(oAssemblyName, AssemblyBuilderAccess.Save);

                //Save the assembly as ILOnly working on I386 32 bit processor

                //An argument exception will be thrown if you precise the path

                // C:\...

                oAssBuilder.Save(@"myAssembly.dll");

                Console.WriteLine("The assembly is dynamically created in the current domain");

                Console.Read();

            }

            catch (AppDomainUnloadedException caught)

            {

                Console.WriteLine(caught.Message);

            }

        }

    }

}

It is also possible to create assemblies in a new domain you just replace currentDomain by createDomain

share this blog :
post comment
 

Thank you for the advise Mahesh:.)

Posted by Bechir Bejaoui Jul 12, 2008

One way I do is, copy my code from Visual Studio to a word document and then copy word doc to here. It adds HTML color coding and formatting for me. See your blog now ;-)

Posted by Mahesh Chand Jul 06, 2008

Hi mahesh, I tryed but it doesn't work.

Posted by Bechir Bejaoui Jul 06, 2008

Looks like code format in your blog is messed up ;)

Posted by Mahesh Chand Jul 05, 2008