C# (Sharp) Programming Language Question:

Download Job Interview Questions and Answers PDF

How does assembly versioning in .NET prevent DLL Hell?

C# (Sharp) Programming Language Interview Question
C# (Sharp) Programming Language Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
What is a delegate in C#? Which .Gang of Four. design pattern is shown below?