what is DLL Hell and how it is solved in .NET?
Answer Posted / srinivas.t
windows applications use some shared DLLs. suppose
application1 is using the shared dell(named as Mydll.dll
which is installed when the application1 installed in to
the system), consider we need another applications called
application2 it is also having a shared dll(named as
Mydll.dll)and this application2 mydll.dll will repalce the
application1 MYdll.dll.
but the implementation of mydll.dll may be different in the
two applications. so that dll is not work properly. this is
called the DLL HEll.
.net gave a solution to this problem by giving the strong
name to the shred assemblies and it allows the side by side
execution.
go with this link for more details
http://msdn.microsoft.com/en-us/library/ms973843.aspx
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is session management in web application?
What is the difference between web.config and machine.config in ASP.NET?
Explain automatic memory management in .net.
Explain advantages of caching?
What do you mean by marshalbyref?
What is the difference between user control an custom control?
Can you nest updatepanel within each other?
What are strong names?
What is a pixel url?
Explain exception filters?
How many languages are supported by .NET at present time?
What threading model used in asp and asp.net?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
Is a dll file an executable?
What is the benefit of WebAPI over WCF?