Laynetworks  
Web laynetworks.com Google
Home | Site Map | Tell a friends
Management Tutorials
Download
Tutorials
History
Computer Science
Networking
OS - Linux and Unix
Source Code
Script & Languages
Protocols
Glossary
IGNOU
Quiz
About Us
Contact Us
Feedback
 
Sign up for our Email Newsletter
 
Get Paid for Your Tech Turorials / Tips

 
Home > Tutorial >DotNet Technology > .Net Technology – In a Nut Shell
Page : 1 2 3 4 5 6
.Net Technology – In a Nut Shell
 
Assemblies
  • What is an Assembly?
  • What are Private and Shared assemblies?
What is an assembly?
  • An assembly is the primary building block of a .Net Framework application. It is a collection of functionality that is built, versioned and deployed as a single implementation unit (as one or more files).
  • All managed types and resources are marked either as accessible only within their implementation unit, or as accessible by code outside that unit.
  • Assemblies are self-describing by means of their manifest, which is an integral part of every assembly.
  • The self-describing nature of assemblies also helps make zero-impact install and XCOPY deployment feasible.
What are Private and Shared Assemblies?
  • A Private assembly is used only by a single application and is stored in that application’s install directory.
  • A Shared assembly is one that can be referenced by more than one application. In order to share an assembly, it must be explicitly built for this purpose by giving it a cryptographically strong name.
MSIL
  • Microsoft Intermediate Language is the CPU-independent instruction set into which the .Net Framework programs are compiled.
  • It contains instructions for loading, storing, initializing and calling methods on objects.
  • Combined with metadata and the common type system, MSIL allows for true cross-language integration.
  • Prior to execution, MSIL is converted to machine code. It is not interpreted.
 
Page : 1 2 3 4 5 6
   
Donation | Useful links | Link to Laynetworks.com | Legal
Copyright © 2000-2010 Lay Networks All rights reserved.