what is assembly in c# with example
One type of programme file is the DLL, or Dynamic Link Library, which stores code that can be used by other programmes. In this way, several applications can use the features contained in a single file simultaneously. Files with the DLL extension are not executable in and of themselves, unlike their EXE counterparts. Instead, they must be referenced from within other programmes. Some DLLs may even have the.EXE file extension because of their similarity to EXEs. Some Dynamic Link Libraries use the.OCX,.CPL, or.DRV file extension in addition to the more common.DLL.
An Assembly is a basic building block of .Net Framework applications. It is basically a compiled code that can be executed by the CLR. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. An Assembly can be a DLL or exe depending upon the project that we choose.
Assemblies are basically the following two types:
1. Private Assembly
2. Shared Assembly
What is a an assembly C#?
An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. Assemblies take the form of executable (.exe) or dynamic link library (. dll) files, and are the building blocks of . NET applications.
No comments:
Post a Comment