This is a discussion on DLL Hell... within the Microsoft .NET forums, part of the Programming Talk category; Hi all!!! Can any body guide me on these:= What is DLL Hell problem in dot net?? can we create ...
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
DLL hell is not the problem of dot net. Dot net provided solution for it. DLL Hell: In windows applications some dlls are shared ones. Suppose app1 is an application running perfectly. It is sharing a shared dll named shared1.dll. You are installing another application app2. Suppose app2 application is also having a shared dll named shared1.dll. At the time of app2 installation, installer will overwrite the shared1.dll which is already there on our system and being shared by app1. The new shared1.dll may be different than the previous dll which is overwritten. Now the application app1 which is depending on overwritten shared1.dll will become defunct. app1 will fail. that's all about dll hell. Dot net shared assemblies are strongly named. Different assemblies with same name but with different version numbers may coexist in shared folders. This is the solution provided by dot net. |
![]() |
| Thread Tools | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A Big hell..............................O to ever1 | PoonamT | Introduce Yourself | 0 | 08-04-2006 02:39 AM |