Showing results for fundamentals - .NET Blog

Mar 5, 2019
18
0

Floating-Point Parsing and Formatting improvements in .NET Core 3.0

Tanner Gooding [MSFT]
Tanner Gooding [MSFT]

Starting back with the .NET Core 2.1 release, we were making iterative improvements to the floating-point parsing and formatting code in .NET Core. Now, in .NET Core 3.0 Preview 3, we are nearing completion of this work and would like to share more details about these changes and some of the differences you might see in your applications. The prim...

.NET Core
Dec 5, 2018
0
0

.NET Framework December 5, 2018 Preview of Cumulative Update for Windows 10 version 1809 and Windows Server 2019

Tara Overfield
Tara Overfield

Today, we are releasing the December 5, 2018 Preview of .NET Framework Cumulative Update for Windows 10 version 1809 and Windows Server 2019. For more information about the new Cumulative Updates for .NET Framework for Windows 10 version 1809 and Windows Server 2019 please refer to this recent announcement. Quality and Reliability This release...

.NET Framework.NET
Nov 13, 2018
1
0

Cross-platform Time Zones with .NET Core

christopher roberts msft
christopher roberts msft

Developing applications that span multiple operating systems in .NET Core while working with Time Zone information can lead to unexpected results for developers not familiar with the differences in how operating systems manage Time Zones. In this post, we will explore those differences and the challenges they present. Reproducing the issue Suppos...

.NET Core.NET
Nov 7, 2018
23
13

Understanding the Whys, Whats, and Whens of ValueTask

Stephen Toub - MSFT
Stephen Toub - MSFT

The .NET Framework 4 saw the introduction of the  namespace, and with it the  class. This type and the derived  have long since become a staple of .NET programming, key aspects of the asynchronous programming model introduced with C# 5 and its  /  keywords. In this post, I'll cover the newer / types, which were introduced to help improve asynchrono...

.NET
Oct 10, 2018
1
0

Using .NET Hardware Intrinsics API to accelerate machine learning scenarios

Dan Moseley
Dan Moseley

This week's blog post is by Brian Lui, one of our summer interns on the .NET team, who's been hard at work. Over to Brian: Hello everyone! This summer I interned in the .NET team, working on ML.NET, an open-source machine learning platform which enables .NET developers to build and use machine learning models in their .NET applications. The ML.N...

.NETMachine LearningAI Machine Learning
May 13, 2014
0
0

Update to SIMD Support

Immo Landwerth
Immo Landwerth

A month ago we announced support for SIMD. Today, we're announcing an update to "RyuJIT" and our NuGet package that exposes the SIMD programming model. Updates to the Microsoft.Bcl.Simd NuGet package More types for We've expanded the support of the types: Support for mutable vector types We've also changed our stance on immutability. In the p...

.NET
May 5, 2014
0
0

Announcing the .NET Framework 4.5.2

The .NET Fundamentals Team
The .NET Fundamentals Team

Updated (2017): See .NET Framework Releases to learn about newer releases. Updated (July 2015): See Announcing .NET Framework 4.6 to read about the latest version of the NET Framework. We are happy to announce the availability of the .NET Framework 4.5.2. It is a highly compatible, in-place update to the .NET Framework 4, 4.5 and 4.5.1. You c...

.NET
Apr 30, 2014
0
0

Get your libraries ready for Windows Phone 8.1

Immo Landwerth
Immo Landwerth

Two weeks ago, we released the Windows Phone preview for developers. In this post, I’ll cover what this means for library and app developers. What this means for library developers As a .NET developer you can target Windows Phone 8.1 via two platforms: Apps that target Windows Phone Silverlight 8.1 can consume existing libraries and NuGe...

.NET
Apr 21, 2014
0
0

Sharing code across platforms

Immo Landwerth
Immo Landwerth

At Build we announced two great ways to re-use your code: the new Universal Windows apps, and the improved portable class libraries. They both help you reuse code across platforms. In this post, I’ll describe both options and how you can choose between them. Overview Why two options? The short answer is that shared projects are about shari...

.NET