C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 11)
11.
Which of the following assemblies can be stored in Global Assembly Cache?
Private Assemblies
Friend Assemblies
Shared Assemblies
Public Assemblies
Protected Assemblies
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
7 comments Page 1 of 1.

Ashish said:   1 decade ago
Yes, correct answers should be C and D both as public and shared assemblies are same.

MANGES said:   1 decade ago
If public assembly == share assembly then Answer should be C, D.

Omkar kuchekar said:   1 decade ago
Public assembly is also called as shared assembly. There is no difference.

Tausif said:   1 decade ago
What is the difference between Public Assembly and Shared Assembly? Kindly provide difference between these two.

Gokul said:   1 decade ago
GAC is used to store the files which are to be shared by several application for that we need to install GAC by using gacutil i-name (i-is to install).

Sundar said:   1 decade ago
The Global Assembly Cache (GAC) is a central repository for storing shared assemblies. The GAC allows multiple versions of the same assembly to be installed concurrently and also prevents different assembly vendors from overwriting each other's assemblies.
(1)

Pradeep said:   1 decade ago
We can also use public assemblies. Then why we use shared assemblie.

Post your comments here:

Your comments will be displayed after verification.