What is shared and private assembly ?

Answers were Sorted based on User's Feedback



What is shared and private assembly ?..

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

What is shared and private assembly ?..

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

What is shared and private assembly ?..

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

Post New Answer

More Dot Net Framework Interview Questions

What is the difference between model and entity?

1 Answers  


What is the difference between string and String

1 Answers  


what is .edmx file and what it contains?

1 Answers   Microsoft,


What is edm (entity data model)? : Entity framework

1 Answers  


what are the different stepts to create shared assemblies?

1 Answers  


What are Model Binders in ASP.Net MVC?

1 Answers  


Can we look at the IL for an assembly?

2 Answers  


What is the difference between a Struct and a Class

1 Answers   Siebel Systems,


What is the difference between renderaction and renderpartial?

1 Answers  


What are authentication filters in web api?

1 Answers  


What are the features that are new in .net 2.0

2 Answers   Emphasis,


What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?

1 Answers  


Categories