Answer Posted / kirti
Just look through the definition of Assemblies..
* An Assembly is a logical unit of code
* Assembly 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
* When you compile your source code by default the exe/dll generated is actually an assembly
* Unless your code is bundled as assembly it can not 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.
Following steps are involved in creating shared assemblies :
* Create your DLL/EXE source code
* Generate unique assembly name using SN utility
* Sign your DLL/EXE with the private key by modifying AssemblyInfo file
* Compile your DLL/EXE
* Place the resultant DLL/EXE in global assembly cache using AL utility
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does the .net framework 3.0 relate to the .net framework 2.0?
What is orm entity framework?
Can I set the unlimited length for "maxjsonlength" property in config?
Explain dependency resolution?
What is basic authentication in web api?
What is .net architecture?
What is the use .Glimpse in ASP.Net MVC
What is meant by tempdata in mvc?
How does �side by side� work for the .net framework 3.0?
How to use multiple submit buttons in asp.net mvc?
What is the difference between adding routes, to a webforms application and to an mvc application?
What is entity framework? : Entity framework
How to answer for project questions..?
How do I install .net framework?
Mention some action filters which are used regularly in ASP.Net MVC?