What is mean by ASSEMBLY..in Dot net

Questions by Ramjanrame   answers by Ramjanrame

Showing Answers 1 - 12 of 12 Answers

Here you told me ASSEMBLY is a collection of different dont net language....

If Here we assume all the languages are maily used in Dot net but the particular ASSEMBLY files can be only used in that particular Application how is it possiblee.....can you explain me Brief...

Regards

Ramesh.m

  Was this answer useful?  Yes

Ashish

  • Feb 23rd, 2006
 

The technical answer to this question is:-

an assembly is a programme that has no Main() function in it,assemblies can be of two types:

1)static:- they are intended to be used by the appliction they are developed withand are located in the same directory where the application is stored

2)shared:- they can be used by any number of application

The main diffrence lies in:1) Location & Visibility

                                  2)Versioning

The shared assembly has a strong name(Versioning or Token key) where as in case of static assembly there is no versioning constraints imposed on it by the CLR

  Was this answer useful?  Yes

vinod_1975

  • Mar 3rd, 2006
 

An Assembly is a primary building block of a Dot Net framework. It is a collection of functionality built and versioned as a single implementation unit.

There are two types of assemblies

Static Assembly , Dynamic Assembly

     Static Assembly will be in a local drive whereas Dynamic assembly will be in a memory.

  Was this answer useful?  Yes

Abhisheka Nayak

  • Mar 3rd, 2006
 

Assembly is primary bulding block of a .NET framework. assembly having the information about Application in two blocks that is metadata and manifest assembly may be dll or .exe file. assembly devided into 5 parts private,shared,setalite,static,dynamic.

metadata having all the information of your code means class,method

manifest having version,public key,strong name,calture 

  Was this answer useful?  Yes

chakri

  • Mar 21st, 2006
 

Assmebly is a collection of files that appears to be user as a single DLL or Executable files

Dll is a collection classes and methods that are added to the program when they are needed

  Was this answer useful?  Yes

sumalatha

  • Apr 1st, 2006
 

    Assembly is a collection of Name Spaces.

  Was this answer useful?  Yes

Manjunath

  • Apr 4th, 2006
 

Assembliies contains compiled code

  Was this answer useful?  Yes

suresh

  • Apr 25th, 2006
 

Assmebly is a 1 single file which contain many other file and its a unit of deployment.

  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