I want to know the details about Assembly

Showing Answers 1 - 7 of 7 Answers

Saroj Sahu

  • Sep 28th, 2005
 

Assembly is small unit of deployment in dotnet application.it is of two types private and shared

  Was this answer useful?  Yes

sanker

  • Nov 9th, 2005
 

Assemblies are the fundamental unit of deployment, version control, reuse and security permissions for a .NET-based application. Assemblies take the form of an executable (.exe) file or dynamic link library (.dll) file, and are the building blocks of the .NET Framework.

  Was this answer useful?  Yes

sanker

  • Nov 9th, 2005
 

An assembly is the primary building block of a .NET Framework application. All managed types and resources are contained within an assembly and are marked either as accessible only within the assembly or as accessible from code in other assemblies. Assemblies also play a key role in security.

  Was this answer useful?  Yes

kaly

  • Apr 5th, 2006
 

There are 3 types of assemblies:

1)private

2)public or shared (installed in Global assemble cache)

3)satellite (used to deploy language specific resources)

  Was this answer useful?  Yes

biswaranjan

  • Apr 7th, 2006
 

Assembly is the primery building block of .net framework.itdeployed&versioned as a single unit..dll Or.exe files r example of assembly.security is also a main feature of assembly.

assembly r 2 types

1.shaired assmble

it is stored in global assembly cache,it is used for whole application.

2.private assembly

it is stored in sub folder.it is used for single application.

   there is one more assmbly is there ,that is satelite assembly which  is used for language interprobability.

    assembly have 4 parts

     a)manifest

     b)metadat

    c)resource

     d)msil

  Was this answer useful?  Yes

Manikandan

  • May 29th, 2006
 

Assemply is a single Deployable Unit,Contain Manifest,Metadata.Manifest Discribe the name and version of the Assemply,Metadata discribe the information such as Class,Interface,Namespace,Enumeration of the assemple.

  Was this answer useful?  Yes

satyambabu

  • Jul 3rd, 2006
 

Assemblys contain collection of .exe and .dll Files and also contain the resources and type definations and assembly are divided into 2 types

1>private

2>public/shared

1>private

private assembly used to single application

2>shared/public:-

shared or public assembly used to my applications

manifest:-

all the assembly metadata information stored in the manifest

metadata:- metadata means data about data

  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