Assembly
What is avantage of assemly & pupose of 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.
srinivasPosted Dec 3, 2009, 11:47 PM
theLizardPosted Dec 3, 2009, 4:53 PM
srinivasPosted Dec 3, 2009, 7:52 AM
theLizardPosted Dec 2, 2009, 6:40 PM
this is assembly (low level machine code)
mov ebx, eaxmov esi, 66
mov [edx+ebx*4+4], ecx
mov [ebx], ah
.Net Assemblies
There are many types of files that are involved when building .NET assemblies:
Kirtan PatelPosted Dec 2, 2009, 11:55 AM
Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. An assembly provides the common language runtime with the information it needs to be aware of type implementations. To the runtime, a type does not exist outside the context of an assembly.
get more info from here about .net assemblies
http://msdn.microsoft.com/en-us/library/hk5f40ct%28VS.71%29.aspx
theLizardPosted Dec 2, 2009, 5:23 AM
Another example
I would guess that this is outside the scope of many on this forum.
theLizardPosted Dec 2, 2009, 5:20 AM
Another example
I would guess that this is outside the scope of many on this forum.
theLizardPosted Dec 2, 2009, 5:04 AM
I would guess that this is outside the scope of many on this forum.
Amit ChoudharyPosted Dec 2, 2009, 2:38 AM
You can go through the following article pretty good for learning about the assemblies in .net
http://www.akadia.com/services/dotnet_assemblies.html
Mark the answer if it help you some how...