How does assembly versioning in .NET prevent DLL Hell?

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


CORRECT ANSWER : NET allows assemblies to specify the name AND the version of any assemblies they need to run.

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement