Archive for the ‘.Net Framework’ Category

Tuples in .NET Framework 4.0

Posted: August 25, 2010 in .Net Framework

Another new feature in the .NET 4 Framework is support for tuples,which are similar to anonymous classes that you can create on the fly. A tuple is a data structure used in many functional and dynamic languages, such as F# and Iron Python. By providing common tuple types in the BCL, we are helping to [...]

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 [...]