What is this DLL hell problem in dotnet?
Can a virtual class be created/can a virtual method be
created inside the class?

Answers were Sorted based on User's Feedback



What is this DLL hell problem in dotnet? Can a virtual class be created/can a virtual method be c..

Answer / guest

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.

Is This Answer Correct ?    56 Yes 3 No

What is this DLL hell problem in dotnet? Can a virtual class be created/can a virtual method be c..

Answer / rajat paliwal

DLL Hell is nothing but overwriting the dll in the
registery. If two application are installed on a single
server one installed First and the Second Installed Later
and There is a dll with same name with different
functionality used in both the applications So in this case
Application one works fine all the days until application
two Installed on the machine. Once the Application two is
installed containing the DLL with the same name as
Application one Contains then In this case the application
one Fails as the DLL from Application two overwites the DLL
of Application one in the Registery. So Application two
works fine where as Application one Fails as the DLL is
missing.

Is This Answer Correct ?    9 Yes 3 No

What is this DLL hell problem in dotnet? Can a virtual class be created/can a virtual method be c..

Answer / guest

virtual class is nothing but it's a virtual class

Is This Answer Correct ?    12 Yes 35 No

Post New Answer

More Dot Net AllOther Interview Questions

What is the difference between machine config vs. Web config : Dot net architecture

0 Answers  


what is ado.net

8 Answers   BirlaSoft, HCL,


Explain write back and write through caches? : Dot net architecture

0 Answers  


What's new in the .net 2.0 class library?

0 Answers  


What are the main Tools to develop .Net Application?

0 Answers   HCL,






how to find the 2nd higgest salary in the column for example take table name is employee? And also find bottom 2nd lowest salary ?

11 Answers   GeoTechnology, Wipro,


which would be the best to use inproc,outproc or sql server

2 Answers   Ness Technologies,


What is the difference between absolute expiration and sliding-time expiration?

0 Answers   MindCracker,


Explain about validation?

0 Answers  


how to display a message box in the Application?

2 Answers   Six Sigma,


what are the events for a form?

0 Answers   Six Sigma,


What is the procedure on hardware that converts the ascii value to binary? : .NET Architecture

0 Answers  


Categories