What are the types of assemblies and where can u store them
and how ?
Answer Posted / kakarala sowjanya
*Single and Multi-File Assemblies:
There are several ways to group the various elements in an
assembly. You can group all elements (manifest, MSIL and
resources) in a single physical file or group them
separately in several files. An assembly that groups all
elements in a single file is called a single file assembly,
whereas the assembly that groups its elements in multiple
files is called a multi-file assembly.
A single-file assembly can be created by compiling the
application in Visual Studio .NET. The Visual Studio .NET
IDE for Visual Basic can only be used to create single-file
assemblies. Multifile assemblies can be created using
command-line compilers.
*Private and Shared Assemblies:
Private assemblies are those assemblies that are accessible
only to the applications residing in the same directory as
that of the assembly. When you create an assembly, it is
private by default. No other application can make use of
private assembly. For a private assembly to be accessible
by more than one application, you must copy the files of
the assembly separately into the folder in which the other
application resides.
Shared assemblies are assemblies added to the GAC (Global
Assembly cache). GAC is used to store assemblies and to
share them between multiple applications. IN the shared
system, the names of the assemblies should be unique as it
can be accessed by all applications. The newer versions of
the component should also have unique names. These can be
achieved by using a strong name for the assembly. A shared
assembly is placed in the GAC folder that is reserved for
shared assemblies.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
Why to use Html.Partial in ASP.Net MVC?
What is the difference between model view and controller?
List out few different return types of a controller action method?
explain what is ado.net entity framework?
What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?
What is page life cycle?
what is datacontrols?
Is entity framework slow?
what is use of entity container?
explain what does .edmx file contains?
What are child actions in ASP.Net MVC?
What is .net architecture?
How large is the .net framework 3.0? Does this change make the release larger?
Is .net framework dead?