How will you load dynamic assembly? How will create
assemblies at run time?
Answer Posted / rathi
to load the dynamically you have to use the reflection
feature of dot net through the System.Reflection name space
whose assemble class has a method assembly.loadfrom
(assembly name) that load the assembly.
or if you want to create a dynamic assembly in memory at
runtime then you can use System.Reflection.Emit name space.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is stateless model?
What are the 3 main components of an asp.net mvc application?
What is managed extensibility framework?
What is the mvc pattern (model view controller pattern)?
Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?
What is the difference between tempdata and viewbag?
What are the components of the .net framework.
When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?
What does mvvm mean?
Explain the difference between viewbag and viewdata in mvc?
What are html helpers in asp.net mvc?
Can you explain the page life cycle of mvc?
What you mean by routing in asp.net mvc?
How OS come to know whether to load the .net framework when we run an .exe created using .Net framework?
If I have multiple filters implemented, what is the order in which these filters get executed?