what is DLL Hell and how it is solved in .NET?
Answer Posted / parthasarathi
Global assembly Cache (GAC) is a repository for all the .Net components or dll that are shared globally on a particular machine. When a .Net component or dll is installed onto the machine, the Global Assembly Cache looks at its version, its public key, and its language information and creates a strong name for the component or dll. The component or dll is then registered in the GAC and indexed by its strong name, so that even with same name of assembly could be install to GAC that will be having two different versions. Once versioning done with any assembly there will be no chance to conflict, which was earlier happening (DLL HELL).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what are configuration files?
Explain how asp.net different from asp?
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
How does asp page work?
What are the advantages and limitations of query string?
How do we implement bundling in MVC?
What is dynamic web page with example?
Describe session handling in a webfarm?
what is the difference between response.write() and response.output.write()?
How do we access view state value of this page in the next page?
What is a user session?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
What is the purpose of master page?
What are the authentication types in asp.net?
What is client side state management?