What do you know about .NET assemblies?

Answer Posted / james

An assembly is the functional unit of sharing and reuse in
the Common Language Runtime. It provides the Common
Language Runtime with the information it needs to be aware
of type implementations. To the runtime, a type does not
exist outside the context of an assembly. Assemblies are a
fundamental part of the runtime.

In physical terms, an assembly is a collection of physical
files that are owned by the assembly. These assemblies,
called static assemblies, can include .NET Framework types
(interfaces and classes) as well as resources for the
assembly (bitmaps, JPEG files, resource files, etc.). In
addition, the Common Language Runtime provides API's that
script engines use to create dynamic assemblies when
executing scripts. These assemblies are run directly and
are never saved to disk, though you can save them to disk
if you so choose.

An assembly forms a logical unit of functionality,
a “logical” dll. An assembly forms the fundamental unit of
deployment, version control, reuse, activation scoping, and
security permissions. Contained in an assembly is the
assembly manifest, which contains all the metadata needed
to specify the version requirements, security identity, and
all information needed to define the scope of the assembly
and resolve references to resources and classes.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the ways to configure remoting objects before client can use them?

598


What is the Difference between CAO and SAO in Remoting.

558


Name the distributed systems available apart from .net remoting?

559


Define the lease of the object?

590


What are the different types of channels used by .net remoting and which is the best one?

488






When should we choose .net remoting over .net web services?

538


Which one is better WebService and Remoting ?

615


Can you pass SOAP messages through remoting?

568


How can we call methods in remoting asynchronously?

514


Difference between web services & remoting?

605


Can you explain remoting?

597


Write a example code for remoting?

520


What are different types of assemblies?

574


Define delegates and events?

577


What are the security features in .net remoting?

541