parts of .net assembly
hi can any one tell me exactly how many parts of .net assembly ...?
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.
SenthilkumarPosted Apr 26, 2012, 11:36 PM
An assembly is a partially compiled code library. In .NET, an assembly is a portable executable and can be an EXE (process assembly) or a DLL (library assembly). An assembly can consist of one or more files or modules in various languages. It is used in deployment, versioning and security
http://visualbasic.about.com/od/FWTools/a/FWAssemblies.htm
VulpesPosted Apr 26, 2012, 2:24 PM
Smart LuckyPosted Apr 26, 2012, 1:14 PM
dear ok but what is difference b/w Manifest and an Assembly Manifest
MuthuMari MPosted Apr 26, 2012, 11:25 AM
An assembly is a partially compiled code library. In .NET, an assembly is a portable executable and can be an EXE (process assembly) or a DLL (library assembly). An assembly can consist of one or more files or modules in various languages. It is used in deployment, versioning and security.
thanks.
If this post is useful then mark it as "Accepted Answer"
VulpesPosted Apr 26, 2012, 11:22 AM
1. The assembly manifest, which contains metadata for the assembly itself.
2. Type metadata for the types used in the assembly.
3 Intermediate language (IL) that implements the types.
4. Resources used.
These parts may not necessarily be in a single physical file but can be spread over several files.