Tuesday 6 December 2016

DLL Hell Problem and Solution in C#

DLL Hell refers to the set of problems caused when multiple applications attempt to share a common component like a dynamic-link library (DLL) or a Component Object Model (COM) class. In the most typical case, one application will install a new version of the shared component that is not backward compatible with the version already on the machine. Although the application that has just been installed works fine, existing applications that depended on a previous version of the shared component might no longer work. 
The reason for these issues is that version information about the different components of an application aren't recorded or enforced by the system.

For more and solution please visit http://crackindotnet.blogspot.in/p/c.html  question number 36

1 comment:

Note: only a member of this blog may post a comment.