C# (Sharp) Programming Language Question:
How does assembly versioning in .NET prevent DLL Hell?
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.
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.
Previous Question | Next Question |
What is a delegate in C#? | Which .Gang of Four. design pattern is shown below? |