What is shared and private assembly ?
Answers were Sorted based on User's Feedback
Answer / karthikumar.r
shared assembly is global to all applications.
but private assembly is cerated for each applications.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / menalish fenando
Shared and Private Assembly: A private assembly is a assembly that is available to particular applications where they are kept. And cannot be references outside the scope of the folder where they are kept.
In contrast, Shared Assemblies are the assemblies that are accessible globally/shared across the machine to all the applications. For using the shared assemblies you need to register the assembly with a strong name in the global assembly cache(GAC) using gacutil.exe. GAC can be found on all the computers with .Net framework installed.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mohan kumar e.
Shared assemblies are accessed by more than one application
and they are stored in GAC. private assemblies are accessed
by only one application and they are stored in application
directory and one of its subdirectory.
| Is This Answer Correct ? | 1 Yes | 0 No |
How does �side by side� work for the .net framework 3.0?
What is Separation of Concerns in ASP.NET ASP.Net MVC?
How .net assemblies are registred as private and shared assembly ?
will this code works fine? or will it gives error? Object obj=5; int i=6; i=i+obj;
Explain how to use multiple submit buttons in ASP.Net MVC?
Is it possible to share a view across multiple controllers?
What is the significance of nonactionattribute?
What is strong name?
What is the difference between the value-type variables and reference-type variables in terms of garbage collection ?
Where does web.config info stored? Will this be stored in the registry ?
1 Answers Accenture, BirlaSoft,
Difference between .NET & J2EE
What are Non Action methods in ASP.Net MVC?