Hi,
What is DLL hell problem? plz, explain.
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Dec 14, 2011, 12:43 PM
See also No End to DLL Hell! which explains ways in which the problem can still exist even with managed assemblies.
Satyapriya NayakPosted Dec 14, 2011, 6:42 AM
DLL hell means deploying the same DLL in your application multiple times.DLL Hell can be overcome by versioning, i e; suppose you install some DLL for the first time, it will be V1.0, again if u install the same , this time it will be V2.0, we can differentiate the DLL by its version and depending on our requirement.It is a assembly version problem
http://www.codeproject.com/KB/cs/DotNet_DLL_Versioning.aspx
http://www.codeproject.com/KB/DLL/The_DLL_Hell.aspx
Thanks
VulpesPosted Dec 14, 2011, 6:19 AM