What’s an assembly?

Questions by NithyaSurendran

Showing Answers 1 - 13 of 13 Answers

kirankumarreddy

  • Oct 27th, 2006
 

assembly is a piece of code ready for execute.

tauhid

  • Nov 9th, 2006
 

Assembly is a logical unit of code which can exists as DLL or EXE file.

It consists of 4 parsts.

1)name, 2)version, 3) Culture information and 4)public key

  Was this answer useful?  Yes

Assebmly is Unit deployment like EXE or DLL.

An Assembly consist of one or more files(dlls ,exe's ,html files etc), and represent a group of resources, type definations and implementaions of those types.An assembly may also contain refernce to other assembly.These resources,types and refences are described in a block of data call a manifest.The manifest is part of the assembly,thus making the assembly self-describing.

----------------

SuniL

zeenat

  • Oct 25th, 2007
 

Assemblies are the single deployable unit contains all the information about the implementation of classes, structures and interfaces.An assembly stores all the information about itself. This information is called Metadata and includes the name and version number of the assembly security information, information about the dependencies,and a list of the files that constitute the assembly.Namespaces all also stored in assembly.Assemblies and the metadata provide all the information to the CLR required for executing the application

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions