What is the GAC? What problem does it solve?

What is the GAC? What problem does it solve?

Global Assembly Cache (GAC):

- Any system that has the CLR (common language runtime) installed, has a machine-wide code cache known as GAC.

- Assemblies deployed in the global assembly cache need to have a strong name.

- The Global Assembly Cache tool (Gacutil.exe), provided by the .NET Framework SDK can be used to deploy assemblies to GAC.
What is a Windows Service and how does its lifecycle differ from a "standard" EXE?
What is a Windows Service and its life cycle? - Windows Service applications are long-running applications that do not have a user interface...
What is serialization in .NET? What are the ways to control serialization?
What is serialization in .NET? - Serialization is a process of taking an object and converting into a form so that it can be transported across the network..
Difference between Interface-oriented, Object-oriented and Aspect-oriented programming.
Interface-oriented, Object-oriented and Aspect-oriented programming - Interface oriented approach compels to develop the software based on the contract...
Post your comment