.Net and C# release history

来源:互联网 发布:javascript 快速入门 编辑:程序博客网 时间:2024/06/15 22:10

.Net Version Release history.Net VersionRelease DateToolFeature1.02002Visual Studio .NetFirst release of .net1.12003Visual Studio 2003Support for ASP.Net mobile controls
Supports side-by-side execution
Security Changes2.02005Visual Studio 2005Generics (with generic collection)
Nullable Types
Support of IPv6 addresses in .net remoting
Common Language Runtime 2.03.02006–WCF (Communication framework)
WPF (Presentation framework)
WF (Workflow Foundation)3.52008Visual Studio 2008LINQ
Addin / Plugin Model (System.AddIn.Contract.dll)4.02010Visual Studio 2010Parallel Computing
Code Contracts
Lazy Initialization
Dynamic Language Runtime
In-process side-by-side hosting
Background garbage collection
Covariance and Contravariance
Common Language Runtime 4.04.52012Visual Studio 2012Enhanced regular expression support
Default culture for application domain
Zip compression
Support of array with size more than 2GB
Asynchronous file operation
Improvement in parallel computing4.5.12013Visual Studio 2013Ability to collect diagnostics information
Ability to explicitly compact the large object heap (LOH) during garbage collection
Additional performance improvements such as ASP.NET app suspension
Multi-core JIT improvements

Note:
- .Net 3.5, 3.0 and 2.0 uses same common language runtime version 2.0.
- .Net 4.5, 4.5.1 and 4.0 share same common language runtime version 4.0.
- I have not included language features in above list e.g. Partial classes / anonymous method. I will cover them in following section.

C# Language Release historyC# VersionRelease DateToolFeature1.02002Visual Studio .NetFirst release of .net2.02005Visual Studio 2005Partial classes
Support for generics
Iterators
Nullable syntax
Anonymous methods
Static class
Volatile keyword3.02008Visual Studio 2008Implicitly Typed Local Variables
Extension Methods
Lambda Expressions
Type Inference
Object and Collection Initializers
Anonymous Types
Automatically Implemented Properties
Expression Trees4.02010Visual Studio 2010Support for Covariance and Contravariance
Optional parameters and named arguments
Support for Dynamic and DLR
Enhanced support for COM interop5.02012Visual Studio 2012Async / Await Feature
Support for caller information
0 0