Vb.Net-Informations.com

  .Net Assembly




   Categories

    HOME
    VB.NET
    CSHARP

 
   














.Net Assembly

Microsoft .Net Assembly is a logical unit of code, it contains code that the Common Language Runtime (CLR) executes. Assembly is really a collection of types and resource information that are built to work together and form a logical unit of functionality. During the compile time Metadata is created, with Microsoft Intermediate Language (MSIL), and stored in a file called a Manifest . Both Metadata and Microsoft Intermediate Language (MSIL) together wrapped in a Portable Executable (PE) file. Manifest contains information about itself. This information is called Assembly Manifest, it contains information about the members, types, references and all the other data that the runtime needs for execution.

Every Assembly you create contains one or more program files and a Manifest. There are two types program files : Process Assemblies (EXE) and Library Assemblies (DLL). Each Assembly can have only one entry point (that is, DllMain, WinMain, or Main). We can create two types of Assembly, private Assembly and shared Assembly . A private Assembly is used only by a single application, and usually it is stored in that application's install directory. A shared Assembly is one that can be referenced by more than one application. If multiple applications need to access an Assembly, we should add the Assembly to the Global Assembly Cache (GAC).


        
        
VB.Net Tutorial


Microsoft .Net Framework Related Contents
*     What is Microsoft .Net Framework
*     How to Microsoft .Net Framework
*     Common Language Runtime
*     How to Common Language Runtime
*     .Net Framework Class Library
*     Common Language Specification
*     Common Type System
*     Microsoft Intermediate Language
*     Portable Executable (PE) File Format
*     Just In Time Compiler
*     Managed Code
*     Metadata
*     Assembly Manifest
*     Global Assembly Cache (GAC)
*     What is a Satellite Assembly?
*     What are the contents of an Assembly?
*     Private Assembly and Shared Assembly
*     What is .Net Strong Name
*     Namespaces
*     Application Domain
*     Code Access Security
*     Garbage Collection
*     .Net Threads

VB.Net Related Topics
*     Microsoft .Net Framework Tutorials
*     VB.NET Language Basics Tutorials
*     VB.NET Program Flow Control Tutorials
*     VB.NET Collections Tutorials
*     VB.NET String Tutorials
*     VB.NET Files Tutorials
*     VB.NET Excel 2007 Tutorials
*     VB.NET Crystal Reports Tutorials
*     VB.NET Communications Tutorial
*     VB.NET ADO.NET Tutorial with source code
*     ADO.NET Data Providers help and Tutorial
*     VB.NET ADO.NET Dataset Tutorial
*     ADO.NET DataAdapter and Dataset
*     VB.NET ADO.NET DataView Tutorial
*     VB.NET Remoting Tutorial
*     VB.NET XML Tutorial
Search here for more CSharp Source Code :

  |  Home   |  SiteMap   |  About   |
net-informations.com (C) 2010 All Rights Reserved