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
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 |
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 |
Answer / guest
virtual class is nothing but it's a virtual class
| Is This Answer Correct ? | 12 Yes | 35 No |
8. Oop-Why and were we use Interfacse and Abstract class.
Explain dma? : .NET Architecture
What is IL code, CLR, CTS, GAC & GC?
Can you explain the difference between an ADO.NET Dataset and ADO Recordset?
Explain Singleton design pattern in .net
what is session management ?
12. Types of polymorphisem[Run and Design Exp.]
What is the problem with .net generics?
what is inheritancy where u required ?
What are the major differences between services and web services?
What is an interrupt? : .NET Architecture
how to change row background color in gridview