Prabhu Raja
What is the difference between a private assembly and a shared assembly?
Posted by Prabhu Raja in .Net | ASP.NET on Nov 05, 2011
0
Do you know the answer for this question? Post it below.
Guest

A Private assembly is an assembly which is available only for a specific application where they are kept.Shared application is a public application which is shared by multiple application.In order to share an assembly it must be built for the purpose by giving a cryptographically strong name while on the other end name of the private assembly must be unique.

Posted by Sonakshi Singh on Dec 12, 2011

Private assembly is used in a single application and no need to register in GAC
while shared assembly can be shared by multiple applications and need to register in GAC
with strong name

Posted by Pankaj Rana on Dec 08, 2011

private assembly means one assembly may use for multiplle applications.

shared assembly means more than one assembly used for one application.

Posted by murali krishna on Dec 01, 2011