|
.NET Framework
.NET is a "Software Platform". It is a language-neutral
environment for developing rich .NET experiences and building applications that can
easily and securely operate within it. When developed applications are deployed, those
applications will target .NET and will execute wherever .NET is implemented instead
of targeting a particular Hardware/OS combination. The components that make up the
.NET platform are collectively called the .NET Framework.
The .NET Framework is a managed, type-safe
environment for developing and executing applications. The .NET Framework manages
all aspects of program execution, like, allocation of memory for the storage of data
and instructions, granting and denying permissions to the application, managing execution
of the application and reallocation of memory for resources that are not needed.
The .NET Framework is designed for cross-language compatibility.
Cross-language compatibility means, an application written in Visual Basic .NET may
reference a DLL file written in C# (C-Sharp). A Visual Basic .NET class might be derived
from a C# class or vice versa.
The .NET Framework consists of two main components:
Common Language Runtime (CLR)
Class Libraries
Common Language Runtime (CLR)
The CLR is described as the "execution engine" of .NET.
It provides the environment within which the programs run. It's this CLR that manages
the execution of programs and provides core services, such as code compilation, memory
allocation, thread management, and garbage collection. Through the Common
Type System (CTS), it enforces strict type safety, and it ensures that the
code is executed in a safe environment by enforcing code access security. The
software version of .NET is actually the CLR version.
Working of the CLR
When the .NET program is compiled, the output of the compiler is not an executable
file but a file that contains a special type of code called the Microsoft
Intermediate Language (MSIL), which is a low-level set of instructions understood
by the common language run time. This MSIL defines a set of portable instructions
that are independent of any specific CPU. It's the job of the CLR to translate this
Intermediate code into a executable code when the program is executed making the program
to run in any environment for which the CLR is implemented. And that's how the .NET
Framework achieves Portability. This MSIL is turned into executable code using a JIT (Just
In Time) complier. The process goes like this, when .NET programs are
executed, the CLR activates the JIT complier. The JIT complier converts MSIL into
native code on a demand basis as each part of the program is needed. Thus the program
executes as a native code even though it is compiled into
MSIL making the program to run as fast as it would if it is compiled to native code
but achieves the portability benefits of MSIL.
Class Libraries
Class library is the second major entity of the .NET Framework which is designed to
integrate with the common language runtime. This library gives the program access to runtime
environment. The class library consists of lots of prewritten code that all
the applications created in VB .NET and Visual Studio .NET will use. The code for
all the elements like forms, controls and the rest in VB .NET applications actually
comes from the class library.
Common Language Specification (CLS)
If we want the code which we write in a language to be used by programs in other languages
then it should adhere to the Common Language Specification (CLS). The CLS describes
a set of features that different languages have in common. The CLS defines the
minimum standards that .NET language compilers must conform to, and ensures that any
source code compiled by a .NET compiler can interoperate with the .NET Framework.
Some reasons why developers are building applications using the .NET Framework:
-
Improved Reliability
-
Increased Performance
-
Developer Productivity
-
Powerful Security
-
Integration with existing Systems
-
Ease of Deployment
-
Mobility Support
-
XML Web service Support
-
Support for over 20 Programming Languages
-
Flexible Data Access
Minimum System Requirements to Install and Use Visual Studio .NET
The minimum requirements are:
RAM: 256 MB (Recommended)
Processor: Pentium II 450 MHz
Operating System: Windows 2000 or Windows XP
Hard Disk Space: 3.5 GB (Includes 500 MB free space on disk)
|