Nitin Bhardwaj

Nitin Bhardwaj

  • NA
  • 15.9k
  • 13m

Create a Assembly

Oct 15 2012 11:41 AM
Hi,
What is the assembly?
how to create it?

Answers (3)

1
Sandeep Singh Shekhawat

Sandeep Singh Shekhawat

  • 0
  • 19.9k
  • 30.8m
Oct 15 2012 10:01 PM
An Assembly is a logical unit of code. When you compile your source code by default the exe/dll generated is actually an assembly so it physically exist as DLLs or EXEs. One assembly can contain one or more files. The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs. Unless your code is bundled as assembly it cannot be used in any other application. When you talk about version of a component you are actually talking about version of the assembly to which the component belongs. Every assembly file contains information about itself. This information is called as Assembly Manifest

http://broadcast.oreilly.com/2010/07/understanding-c-namespaces-and.html
1
Satyapriya Nayak

Satyapriya Nayak

  • 0
  • 39.3k
  • 13.3m
Oct 15 2012 1:07 PM
Hi Nitin,

Please refer the below links

http://www.c-sharpcorner.com/UploadFile/thiru_ji/1DotnetAssemblies02212007050300AM/1DotnetAssemblies.aspx

http://www.codeproject.com/Articles/20565/Assembly-Manipulation-and-C-VB-NET-Code-Injection

http://www.codeproject.com/Articles/3262/A-NET-assembly-viewer

http://www.codeproject.com/Articles/8874/Strong-Names-Explained

Thanks