How is the DLL Hell problem solved in .NET?- DLL Hell problem is solved in .NET with the introduction of Assembly versioning. - It allows the application to specify not only the library it needs to run, but also the version of the assembly. - Versioning is the technique to provide the .dll file to prevent them from replacement. - Global Assembly Cache (GAC)is the separate memory like cache. - GAC is used to remove load from operating system.
|