What is an assembly in .Net?
Assembly in .NET
Hi
What is an assembly in .Net?
What is an assembly in .Net?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Aug 31, 2012, 7:36 AM
Assemblies are the fundamental building block of .NET framework. They contain the type and resources that are useful to make an application. Assembly enables code reuse, version control, security and deployment. An assembly can have four parts: Manifest, Type metadata, MSIL and Resource file.
Thanks