what is DLL Hell and how it is solved in .NET?
Answer Posted / kamlakar singh
DLL Hell refers to the set of problems caused when multiple applications attempt to share a common component like a dynamic-link library (DLL) or a Component Object Model (COM) class. In the most typical case, one application will install a new version of the shared component that is not backward compatible with the version already on the machine. Although the application that has just been installed works fine, existing applications that depended on a previous version of the shared component might no longer work. In some cases, the cause of the problem is even more subtle.
full implementation of dll hell problem go here :
http://www.mindstick.com/blog/507/DLL%20HELL%20Problem%20in%20Net
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What’s the use of “GLOBAL.ASAX” file?
Where session id is stored?
How do you use viewstate?
How should I destroy my objects in asp.net?
What is a user session?
How does session work in asp net?
Do you know using sql cache invalidation?
What are the differences between clr & cts?
What is the default authentication mode for asp.net?
What is web api config?
What do you mean by caching in asp.net?
Describe the difference between inline and code behind - which is best in?
What is the significance of proxy user?
What is route in web api?
What is view state and how it works in asp net?