Can you tell me What is DLL Hell and how does .NET solve it?
DLL Hell describes in managing DLLs on a system, this includes multiple copies of DLL different versions and it is loaded in .NET. Can you explain to solve .NET in different solutions.
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.
Amit KumarPosted Jun 6, 2017, 1:42 PM
- It allows the application to specify not only the library it needs to run, but also the version of the assembly.
- Versioning is the technique to provide the .dll file to prevent them from replacement.
- Global Assembly Cache (GAC)is the separate memory like cache.
- GAC is used to remove load from operating system.
Nilesh ShahPosted Jun 6, 2017, 1:18 PM
Ramesh PalanivelPosted Jun 6, 2017, 1:04 AM