what is an assembly?

Answers were Sorted based on User's Feedback



what is an assembly?..

Answer / m.d.mallikharjuna rao

An assembly is a file that is automatically generated by
the compiler upon successful compilation of every .NET
application. It can be either a Dynamic Link Library or an
executable file.
ASSEMBLIES ARE THE BUILDING OF DOTNET
FRAMEWORK ,FUNDAMENTAL UNIT OF DEPLOYMENT ,VERSON
CONTROL,REUSE, ACTIVATION SCOPING AND SECURITY PERMISSION
Diffrent Types of Assemblies:
1.PRIVATE
2.SHARED/PUBLIC
3.SATELLITE
4.DYNAMIC
5.SINGLE FILE ASSEMBLY
6.MULTYFILE ASSEMBLY
Fratures of Assembles:
1.Assemblies are self_describing.
2.Version dependencies are recorded inside manifest.
3.Assembliles can be loded side by side.
4.Applilcation isolation is endured using application
domains.
5.Installation can be as easy as copying the files that
belong to an assemly.
6.Assemblies can be shared or private.

Is This Answer Correct ?    8 Yes 2 No

what is an assembly?..

Answer / srinivasarao

assembly is set of resources and types,along with
metadata.About these resources and types it deploye as a
single unit.It contains 1.Metadata
2.manifast
3.MSIL
4.Type /Security information.
5.Resources

Is This Answer Correct ?    3 Yes 0 No

what is an assembly?..

Answer / chinna chowdary

asembly is nothing but .dll or .exe files

Is This Answer Correct ?    2 Yes 0 No

what is an assembly?..

Answer / ravisastri

assembly is the standard for components develoment with the
ms.dotnet.assemblies may exists or may not exists.
all these assemblies consists defination of
types ,versioning information of the
types,metadata,manifest.

Is This Answer Correct ?    2 Yes 0 No

what is an assembly?..

Answer / anjana

Assembly will generated for the project when it complies.
Each project have assembly either in .dll or .EXE format


Assembly file contains the IL, metadata , manifest(
information about the assembly version and other related
informations)

there are two types single file and multifile.
in multifile all (metadata, manifest, IL) in separate files.
while in single file all( IL, Manifest, Metadata) are in one
file.

Is This Answer Correct ?    2 Yes 0 No

what is an assembly?..

Answer / veeru

Its versioning deployment unit. it consists of assebly
manifest,Metadata.

Is This Answer Correct ?    1 Yes 0 No

what is an assembly?..

Answer / guest

It is the smallest runtime unit

Is This Answer Correct ?    1 Yes 0 No

what is an assembly?..

Answer / prabhat

assembly is the logical code of data,and self deployment unit,
in physical it exist either .dll or .exe,
it contains four major parts:
1. Menifest- additional information of regarding to assembly
2. Type metadata:-Data about data or structure of classes
3. MSIL code:- containing business logics
4. Set of Resource: information or resource of other assembly

Is This Answer Correct ?    2 Yes 2 No

what is an assembly?..

Answer / shiva kumar

Assembly's are major building blocks of .net which is
generated by the language compiler.
Assemblies contains MSIL code,metadata,manifest,resource
information.
assemblies can be a .dll or .exe files
.dll assembly is called as library assemblies.
.exe assembly is called as process assemblies.

Is This Answer Correct ?    1 Yes 1 No

what is an assembly?..

Answer / rubanjames

assebly is a single deployment unit that contains all the
informations like dll and exe and MSIL
code,metadata,manifest,resource
information.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

how can you tell ef to have a different table or column name than that defined for the class?

0 Answers   Microsoft,


What is stateless model?

0 Answers  


What is the 'page life cycle' of an ASP.NET MVC?

0 Answers   NA,


I want ask from plz smaple example code for Biztalkk server

0 Answers  


What are the ways to deploy an assembly?

3 Answers  






What symbol would you use to denote, the start of a code block in razor views?

0 Answers  


What are the types of assemblies

1 Answers  


What is Attribute Routing in ASP.Net MVC?

0 Answers  


What is meant by domain model?

0 Answers  


If background completes its processing will it wait for foreground threads?

2 Answers   Kanbay,


What is the domain object?

0 Answers  


What’s the advantage of using System.Text.StringBuilder over System.String?

4 Answers   IBM,


Categories