top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is dll hell problem in .NET and how it will solve?

+1 vote
363 views

Explain about dll hell problem in .NET and how it will solve

posted Nov 21, 2014 by Vinitha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Dll hell, is kind of conflict that occurred previously, due to the lack of version supportability of dll for (within) an application
.NET Framework provides operating system 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 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 the different versions of same component, or DLL

answer Nov 21, 2014 by Manikandan J
...