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 cross page posting in asp net?
What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
Where can I get the details on migration of existing projects using various technologies to asp.net?
Explain the asp.net mvc folder conventions? : asp.net mvc
What is master page in dtp?
What are cookies in asp.net?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
What are the new web part controls in asp.net 2.0 ?
How do cookies work?
Why we are using mvc instead of asp.net? : Asp.Net MVC
Can we create a multiple user simultaneously ?
what are the web form events available in asp.net?
What is preprocessor in .net and type, where it use?
What is difference between cache and session?