How you load dynamic assembly? How will create assemblies at run time?

 Posted by Tripati_tutu on 1/25/2011 | Category: .NET Framework Interview questions | Views: 6142 | Points: 40
Answer:

You can load the assembly dynamically by using classes from the System.Reflection namespace.
Assembly x = Assembly.LoadFrom( “Custom.dll” );


You can create assembly by using classes from System.CodeDom.Compiler


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response