The Microsoft .Net Framework is a
platform that provides tools and technologies you need to build Networked
Applications as well as Distributed Web Services and Web Applications. The .Net
Framework provides the necessary compile time and run-time foundation to build
and run any language that conforms to the Common Language Specification
(CLS).The main two components of .Net Framework are Common Language Runtime
(CLR) and .Net Framework Class Library (FCL).
Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop console and graphical user interface applications along with Windows Forms applications, web sites, web applications, and web services in both native code together with managed code for all platforms supported by Microsoft Windows, Windows Mobile, Windows CE, .NET Framework, .NET Compact Framework and Microsoft Silverlight.
Visual Studio includes a code editor supporting IntelliSense as well as code refactoring. The integrated debugger works both as a source-level debugger and a machine-level debugger. Other built-in tools include a forms designer for building GUI applications, web designer, class designer, and database schema designer.
Microsoft started the development on
the .NET Framework in the late 1990s originally under the name of Next
Generation Windows Services (NGWS). By late 2000 the first beta versions of
.NET 1.0 were released.
Version 3.0 of the .NET Framework is
included with Windows Server 2008 and Windows Vista. Version 3.5 is included
with Windows 7, and can also be installed on Windows XP and the Windows Server
2003 family of operating systems. On 12 April 2010, .NET Framework 4 was
released alongside Visual Studio 2010.
The .NET Framework family also
includes two versions for mobile or embedded device use. A reduced version of
the framework, the .NET Compact Framework, is available on Windows CE
platforms, including Windows Mobile devices such as smartphones. Additionally,
the .NET Micro Framework is targeted at severely resource-constrained devices.
Version
|
Version
Number
|
Release
Date
|
Visual
Studio
|
Default
in Windows
|
1.0
|
1.0.3705.0
|
2002-02-13
|
Visual Studio .NET
|
Windows XP Tablet and Media Center
Editions.
|
1.1
|
1.1.4322.573
|
2003-04-24
|
Visual Studio .NET 2003
|
Windows Server 2003
|
2.0
|
2.0.50727.42
|
2005-11-07
|
Visual Studio 2005
|
Windows Server 2003 R2
|
3.0
|
3.0.4506.30
|
2006-11-06
|
Windows Vista, Windows Server 2008
|
|
3.5
|
3.5.21022.8
|
2007-11-19
|
Visual Studio 2008
|
Windows 7, Windows Server 2008 R2
|
4.0
|
4.0.30319.1
|
2010-04-12
|
Visual Studio 2010
|
Windows 7(Recommended)
|
4.5
|
4.5.40805
|
2012-02-29 (consumer preview)
|
Visual Studio '11'
|
Windows 8, Windows Server 8
|
Design
features
Interoperability
Because computer systems commonly require interaction
between newer and older applications, the .NET Framework provides means to
access functionality implemented in programs that execute outside the .NET
environment. Access to COM components is provided in the
System.Runtime.InteropServices and System.EnterpriseServices namespaces of the
framework; access to other functionality is provided using the P/Invoke
feature.
Common Language Runtime Engine
The Common Language Runtime (CLR) is the execution engine of
the .NET Framework. All .NET programs execute under the supervision of the CLR,
guaranteeing certain properties and behaviors in the areas of memory
management, security, and exception handling.
Language Independence
The .NET Framework introduces a Common Type System, or CTS.
The CTS specification defines all possible datatypes and programming constructs
supported by the CLR and how they may or may not interact with each other
conforming to the Common Language Infrastructure (CLI) specification. Because
of this feature, the .NET Framework supports the exchange of types and object
instances between libraries and applications written using any conforming .NET
language.
Base Class Library
The Base Class Library (BCL), part of the Framework Class
Library (FCL), is a library of functionality available to all languages using
the .NET Framework. The BCL provides classes that encapsulate a number of
common functions, including file reading and writing, graphic rendering, database
interaction, XML document manipulation, and so on.
Simplified Deployment
The .NET Framework includes design features and tools which
help manage the installation of computer
software to ensure it does not interfere with previously installed software,
and it conforms to security requirements.
Security
The design is meant to address some of the vulnerabilities,
such as buffer overflows, which have been exploited by malicious software.
Additionally, .NET provides a common security model for all applications.
Portability
While Microsoft has never implemented the full framework on
any system except Microsoft Windows, the framework is engineered to be platform
agnostic, and cross-platform implementations are available for other operating
systems (see Silverlight and the Alternative implementations section below).
Microsoft submitted the specifications for the Common Language Infrastructure
(which includes the core class libraries, Common Type System, and the Common
Intermediate Language), the C# language and the C++/CLI language to both ECMA
and the ISO, making them available as official standards. This makes it
possible for third parties to create compatible implementations of the
framework and its languages on other platforms.
No comments:
Post a Comment