How will you load dynamic assembly? How will create
assemblies at run time?
Answers were Sorted based on User's Feedback
Answer / 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 |
Explain bundle.config in mvc4?
My organization went through the approval process of supporting the .net framework 2.0 in production. Do we need to go through the same process all over again for the .net framework 3.0? Do I need to do any application compatibility testing for my .net framework 2.0 applications?
What does 'managed' mean in the .NET context
please tell me the best book of asp.net in the markit. which explain in simple and detail.
Mention two instances where routing is not implemented or required?
What is page life cycle?
Explain entity lifecycle? : Entity framework
Why are there five tracing levels in System.Diagnostics.TraceSwitcher?
Can you explain renderbody and renderpage in asp.net mvc?
Which is the base class for .net Class library?
What “beforFilter()”,“beforeRender” and “afterFilter” functions do in Controller?
How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?