C# (Sharp) Programming Language Question:

How does assembly versioning in .NET prevent DLL Hell?

Tweet Share WhatsApp

Answer:

1. The runtime checks to see that only one version of an assembly is on the machine at any one time.
2. .NET allows assemblies to specify the name AND the version of any assemblies they need to run.
3. The compiler offers compile time checking for backward compatibility.
4. It doesn't.

Download C# (Sharp) Programming Language PDF Read All 163 C# (Sharp) Programming Language Questions
Previous QuestionNext Question
What is a delegate in C#? Which .Gang of Four. design pattern is shown below?