Microsoft .NET Framework 4.6 RC

  • 22 January 2015
  • 0 replies
  • 41 views

Userlevel 7
Badge +52
The newest version of the Microsoft .NET Framework 4.6. In RC, the version number still appears in some places as 4.5.7. It will be updated to Microsoft .NET Framework 4.6 before the final version ships.
 
Base class library changes
Added many new APIs to enable key scenarios, particularly cross platform scenarios. They include the following changes and additions:
* New cryptography APIs such as AsymmetricAlgorithm.KeyExchangeAlgorithm, AsymmetricAlgorithm.SignatureAlgorithm, and System.Security.Cryptography.X509Certificates.X509Certificate.
* Additional collections implement System.Collections.ObjectModel.ReadOnlyCollection, including System.Collections.Generic.Queue and System.Collections.Generic.Stack.
* Additional members to support the task-based asynchronous pattern (TAP), including Task.CompletedTask and NamedPipeClientStream.ConnectAsync.
 
Support for code page encodings
.NET Core primarily supports Unicode encodings, and by default it provides limited support for code page encodings. You can add support for code page encodings that are available in the .NET Framework but unsupported in .NET Core by registering code page encodings with the Encoding.RegisterProvider method. For more information, see CodePagesEncodingProvider.
 
Improvements to event tracing
An EventSource object can now be constructed directly, and you can call one of the Write() methods to emit a self-describing event.
 
Resizing in Windows Forms controls
This feature has been expanded to include the System.Windows.Forms.DomainUpDown, System.Windows.Forms.NumericUpDown, System.Windows.Forms.DataGridViewComboBoxColumn, System.Windows.Forms.DataGridViewColumn and System.Windows.Forms.ToolStripSplitButton types.
This is an opt-in feature. To enable it, set the EnableWindowsFormsHighDpiAutoResizing element to true in the application configuration (app.config) file.
 
64-bit JIT compiler for managed code
This release includes a new version of the 64-bit JIT Compiler, which provides significant performance improvements over the legacy 64bit JIT Compiler. While we have tried to make the transition to the new Compiler as transparent as possible, you may see changes in behavior.
 
Support for converting DateTime to or from Unix time
New methods have been added to support converting DateTime to or from Unix time. The following APIs have been added to DateTimeOffset:
* static DateTimeOffset FromUnixTimeSeconds(long seconds)
* static DateTimeOffset FromUnixTimeMilliseconds(long milliseconds)
* long ToUnixTimeSeconds()
* long ToUnixTimeMilliseconds()
 
ASP.NET Model Binding supports Task returning methods
ASP.NET Model Binding methods that were previously Task returning were not supported and threw an exception at runtime if configured. If applications are deployed with such methods, these methods will now be executed correctly. This change applies only to applications specifically targeting Microsoft .NET Framework 4.6 or later.
 
Microsoft .NET Framework 4.6 Supported Operating Systems:
* Windows Vista SP2 (x86 and x64)
* Windows 7 SP1 (x86 and x64)
* Windows 8 (x86 and x64)
* Windows 8.1 (x86 and x64)
* Windows Server 2008 R2 SP1 (x64)
* Windows Server 2008 SP2 (x64)
* Windows Server 2012 (x86 and x64)
* Windows Server 2012 R2 (x86 and x64)
Homepage – http://www.microsoft.com/net
 
Download Microsoft .NET Framework 4.6 RC (Offline Installer) x86/x64 Multi-language
Download Microsoft .NET Framework 4.6 Preview x86/x64 (Web Installer) Multi-language
Download Microsoft .NET Framework 4.6 Preview in your Language
 
Via softexia.com

0 replies

Be the first to reply!

Reply