Answer Posted / neelima
The assembly which is used only by a single application is
called as private assembly. Suppose you created a DLL which
encapsulates your business logic. This DLL will be used by
your client application only and not by any other
application. In order to run the application properly your
DLL must reside in the same folder in which the client
application is installed. Thus the assembly is private to
your application.
Suppose that you are creating a general purpose DLL which
provides functionality which will be used by variety of
applications. Now, instead of each client application
having its own copy of DLL you can place the DLL in 'global
assembly cache'. Such assemblies are called as shared
assemblies.
| Is This Answer Correct ? | 29 Yes | 0 No |
Post New Answer View All Answers
How to display validation messages in one control?
What are query strings used for?
What is session in asp.net?
What is the appSettings Section in the web.config file?
How many types of state management are there in asp net?
Do I need to have the latest version of windows media player installed?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
Explain Areas in MVC?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
Can we have a web application running without web.config file?
What are the advantages of using session?
Explain the advantages of passport authentication.
Explain what are webservices?
Where you store Connection string in "Web.Config" file in ASP.NET?
How is it possible for .NET to support many languages?