How is the DLL Hell problem solved in .NET? - C#.NET

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.
C#.NET satellite assembly
C#.NET - Define satellite assembly - Satellite assembly is created to write a multilingual or multi-cultural application in .NET...
Debugging an ASP.NET Web application - C#.NET
C#.NET - Debugging an ASP.NET Web application - Attach the aspnet_wp.exe process to the DbgClr debugger...
Purpose of tracing levels in System.Diagnostics.TraceSwitcher - C#.NET
C#.NET - purpose of tracing levels in System.Diagnostics.TraceSwitcher - Five levels range from none to Verbose, allowing fine-tuning the tracing activities...
Post your comment