Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are assemblies?

I have heard many times the word assemblies. Still I don't know what they are and its uses in programming language.

like image 619
vishnu Avatar asked Nov 04 '10 11:11

vishnu


People also ask

What is assembly explain?

: a company of persons gathered for deliberation and legislation, worship, or entertainment. an assembly of religious leaders. capitalized : a legislative body. specifically : the lower house of a legislature.

What are the types of assemblies?

NET framework, an assembly is a partially compiled code library for use in deployment, versioning and security. There are two types: process assemblies (EXE) and library assemblies (DLL).

What is the structure of assemblies?

An item assembly structure is a list of parts and subassemblies that you need to build an item or to define the requirements of a location. Use item assembly structures on rotating items and on items in a kit. You can copy an item assembly structure.

What are assemblies C#?

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. It is generated only once for an application and upon each subsequent compilation the assembly gets updated.


2 Answers

Most of your questions are for c# so here is the link for .net Assembly

In the .NET framework, an assembly is a compiled code library for use in deployment, versioning and security. There are two types: process assemblies (EXE) and library assemblies (DLL). A process assembly represents a process which will use classes defined in library assemblies. .NET assemblies contain code in CIL, which is usually generated from a CLI language, and then compiled into machine language at runtime by the CLR just-in-time compiler.

like image 133
Shoban Avatar answered Sep 19 '22 00:09

Shoban


Assembly is just a library of your classes. which you can re-use in your multiple projects so that you do not have to write one class each time for each project.

create one assembly and call it everywhere. thats it.

like image 28
Zain Shaikh Avatar answered Sep 21 '22 00:09

Zain Shaikh