what is DLL Hell and how it is solved in .NET?

Answer Posted / vimal victor

DLL Hell :- This is a problem in loading a specific dll
(class id, version number, path etc). For example, if I
build test.dll v1.0.0.0 and deploying it in c:\MyProg. My
application App1 and App2 are using the methods in that
dll. And there is a requirement to change something in App1
and I supposed to change test.dll also for the same
requirement. Once I finished with all my changes, I will be
deploying them in the appropriate locations. Now, the older
dll will be overwritten. And my App2 will look for test.dll
of older version and since it is not there it will not
work. This is a scenario for dll hell issue.

.NET and dll hell:- .NET has a provision to specify whether
a 'Specific Version' to be loaded or not. If you check with
any dll's propery window, that has a property called
Specific Version. By default it will be false for the dll's
created by users. It means whether the specific version
alone has to be loaded for that project. If that is false,
then te runtime will load any available higher version of
dll for that project. Thus this issue has been sorted out.

Is This Answer Correct ?    67 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between server-side scripting and client-side scripting?

724


Why do we use datasource in asp.net?

687


What are the different types of validation controls in asp.net?

726


What is the full form of asp.net?

702


How do I open an ashx file in windows 7?

738






To load your generated dataset with data which method do you invoke?

808


How does a content page different from a master page?

770


How do I use a proxy server when invoking a web service?

690


What is asp.net ajax?

706


Is data edited in the Repeater control?

774


What are the asp.net 2.0 features?

718


What is client side state management?

674


What does session_start () do?

807


What is mvc in asp.net tutorial? : Asp.Net MVC

756


What is custom events? How to create it?

794