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 does asp.net stand for?
How to add DateTime Control in normal DataGrid Server Control?
What are the file extensions for razor views?
Can we store object in viewstate?
What is a Cookie? Where is it used in ASP.NET?
What is Cookies Less Session?
What is semantic gap?
Is it possible to apply themes to an asp.net application? If yes, then how?
How to make paging concepts in datagrid in ASP.NET?
Describe paging in asp.net?
About CLR, reflection and assemblies?
What is the default Orientation property in a Menu control?
What is the compiled object?
Why select Web API?
Explain the difference between server control and html control.