Posts Tagged ‘.Net Framework’

Managed Code is what VB.NET and C# compilers create. It compiles to Intermediate Language (IL), not to machine code that could run directly on your computer. The IL is kept in a file called an assembly, along with metadata that describes the classes, methods, and attributes (such as security requirements) of the code you’ve created. [...]

Assemblies

Posted: October 12, 2009 in .Net Framework
Tags: ,

What is an assembly? An Assembly is a  logical unit of code Assembly physically exist as DLLs or EXEs One assembly can contain one or more files The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs When you compile your source code by default the [...]

About .NET Framework

Posted: October 12, 2009 in .Net Framework
Tags: , ,

The basic components of .NET platform (framework) are: 1 . .Net Applications (Win Forms,Web Applications,Web Services) 2. Data(ADO.Net) and XML Library 3. FrameWork Class Library(FCL) (IO,Streams,Sockets,Security,Reflection,UI) 4. Common Language Runtime(CLR) (Debugger,Type Checker,JITer,GC) 5.Operating  System (Windows,Linux,UNIX,Macintosh,etc.,) Common Language Runtime (CLR): The most important part of the .NET Framework is the .Net Common Language Runtime (CLR) also called .Net Runtime [...]