Prabhu Raja
What is the difference between a private assembly and a shared assembly?
By Prabhu Raja in ASP.NET on Nov 05 2011
  • Sonakshi Singh
    Dec, 2011 12

    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.

    • 0
  • Pankaj Rana
    Dec, 2011 8

    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

    • 0
  • murali krishna
    Dec, 2011 1

    private assembly means one assembly may use for multiplle applications.

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

    • 0
  • James Veronica
    Nov, 2011 30