Monday, April 13, 2009

Microsoft Intermediate Language (MSIL)


When a .NET application is compiled it is converted from the language it was written in (VB.NET, C#, J# etc) to a Managed Module.

Managed Module is a low level set of instructions understood by Common Language Runtime.

This Managed Module contain MSIL which is direct compiled form of your code and metadata.









Metadata

Every managed module contains metadata that describe the two things:

1. The types (classes) and members defined in your source code.

2. The types (classes) and members referenced by your source code.

Metadata is always associated with the file that contain the IL code.

CodeGuru.com

csharp-source.net : news