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 |
does .NET support multiple inheritance ?
Explain pipelining? : .NET Architecture
What is an interrupt? : Dot net architecture
how we can fire event in databound column in datagrid without using button?
11. diff b/w Dll and Exe
Explain about cookie less session state? : .NET Architecture
Explain the race around condition? : Dot net architecture
5. Wcf- Session Managment
How will you do windows authentication and what is the namespace?
server.transfer limitation ?
Explain the types of memory management? : Dot net architecture
What is .net mobile utility controls. : Microsoft dot net mobile