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
Can we set which type of comparison we want to perform by the CompareValidator control?
What is the part of url?
3. What goals do you have in your career?
Is asp.net and .net the same?
How can we use Web API with ASP.NET Web Form?
What are the advantages of passport authentication?
What are the server controls in asp.net?
What is smpte vc-1?
Explain method to handle error using HttpError in Web API?
How does output caching work in ASP.NET?
What is session start?
What does postback mean?
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
What is the difference between abstract class vs interface? Can give me the real time examples?
Is it true that a Web service must be written in .NET or not?