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
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
How to set the pane area to transparent of a scrollPane component.?
Explain about asp.net 2.0 themes?
What is use of <% %> in asp.net?
Which object wraps the state or data of a user?
Explain the disadvantages of viewstate?
Difference between using directive vs using statement?
Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?
Why do we use web config?
What are the parts of an http response?
What is a pixel url?
What is a runtime version?
Explain diff. Between friend and protected friend?
Explain program to call the js function when the change is being made in the dropdown list made in asp.net mvc? : asp.net mvc
1.can we add connection string in global.asax?????????? 2.what are the default files included when we create new web application????