what is DLL Hell and how it is solved in .NET?
Answer Posted / arjun jaiswal
Dll Hell refers to a set of problems caused when multiple
applications attempt to share a common component like a
dynamic link library (DLL). The reason for this issue was
that the version information about the different components
of an application was not recorded by the system.
.Net Framework provides operating systems with a Global
Assembly Cache. This Cache is a repository for all the .Net
components that are shared globally on a particular
machine. When a .Net component is installed onto the
machine, the Global Assembly Cache looks at its version,
its public key, and its language information and creates a
strong name for the component. The component is then
registered in the repository and indexed by its strong
name, so there is no confusion between different versions
of the same component, or DLL.
| Is This Answer Correct ? | 360 Yes | 16 No |
Post New Answer View All Answers
Explain asp.net page life cycle?
How you can return View from ASP.NET Web API method?
Which type of state management is provided by Query String in ASP.NET?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What are Authentication and Authorization?
What New Features comes with ASP.NET Web API 2.0?
What is Cookies Less Session?
What is cookieless session id explain in brief?
What is base class of .net?
Can anyone please tell me that the question posted on this website are Sufficient for the interview with 2+ year experience in .net
Explain the difference between server control and html control.
What is http post action?
Explain serialization and deserialization?
What’s difference between “optimistic” and “pessimistic” locking?
What is the difference between typeof() vs gettype()?