How?s the DLL Hell problem solved in .NET?

Answer Posted / guest

Assembly versioning allows the application to specify not
only the library it needs to run (which was available under
Win32), but also the version of the assembly

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the boolean data types in c#?

705


Is c# difficult to learn?

665


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3849


Why do we use constructors in c#?

806


What is difference between c and c sharp?

681


Can an abstract class inherit from another abstract class c#?

742


How to handle exceptions that are raised in a component?

830


How will you deploy the dll file in gac?

704


What is jit? What are the different types of jit?

795


What is the difference between interface and inheritance in c#?

692


What is the difference between ienumerable and enumerable?

696


Why is ienumerable used?

679


How to force my .net app to run as administrator on windows 7?

720


update data in an xml file which resides in solution itself, using silverlight 4.0

1566


What is COM Interoperability?

769