Describe the GAC in the .Net Framework - .NET Framework

Describe the GAC in the .Net Framework.

.Net Framework provides Global Assembly cache, a machine-wide cache. It stores shared assemblies that can be accessed by multiple languages.

Explain GAC.

GAC stands for global assembly cache. It is an area of memory reserved to store the assemblies of all .NET applications that are running on a certain machine. It shares assemblies among multiple .NET applications. The assemblies must have a strong name and must be publicly shared to be installed in the GAC.
What is the advantage of packaging over xcopy in .NET? - .NET Framework
.NET Framework - The most trivial technique to publish a website is to simply copy your web application files to the production server.....
25 .NET Basic Interview Questions and Answers
.NET Basic questions and answers - the section carries questions such as Difference between Namespace and Assembly, Explain the concept of strong names., GAC, What is a Satellite assembly?, How do you install assembly to the Global Assembly Cache? etc.
Define .Net Assembly - .Net Assembly
.Net Assembly - An Assembly is a collection, either an executable (.exe) or a dynamic link library (.dll), that forms a logical unit of functionality and built to efficiently work together...
Post your comment