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# ( ). 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 (CTS), it enforces strict type safety, and it ensures that the code is executed in a safe environment by enforcing code access . The software version of .NET is actually the CLR version.
Working of the CLR
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 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)
0 comments:
Post a Comment