Showing tag results for performance

Jun 7, 2022
Post comments count17
Post likes count2

Performance Improvements in .NET MAUI

Jonathan Peppers
Jonathan Peppers

Want to know why .NET MAUI apps boot faster, run smoother, and are smaller? This post break down how we made .NET MAUI fast!

.NET.NET MAUIPerformance
Jan 27, 2022
Post comments count6
Post likes count0

Performance improvements in ASP.NET Core 6

Brennan Conroy
Brennan Conroy

ASP.NET Core in .NET 6 brought several performance improvements. In this article I cover some top improvements and why now is a great time to upgrade to .NET 6.

ASP.NET Core.NETASP.NET
Mar 25, 2021
Post comments count27
Post likes count0

Loop alignment in .NET 6

Kunal Pathak
Kunal Pathak

Loop alignment improvements in .NET 6

.NET Core.NETC#
Sep 2, 2020
Post comments count13
Post likes count0

ARM64 Performance in .NET 5

Kunal Pathak
Kunal Pathak

ARM64 performance work in .NET 5

.NET Core.NETC#
Oct 10, 2019
Post comments count62
Post likes count0

Blazor Server in .NET Core 3.0 scenarios and performance

Daniel Roth
Daniel Roth

Blazor Server in .NET Core 3.0 enables you to add rich interactive UI to your .NET apps without having to write JavaScript. Learn about when to use Blazor Server, how it scales, how it relates to Blazor WebAssembly, and how we expect to evolve Blazor in the future.

ASP.NETASP.NET Core.NET Core
Sep 3, 2019
Post comments count35
Post likes count4

Hardware Intrinsics in .NET Core

Tanner Gooding [MSFT]
Tanner Gooding [MSFT]

Several years ago, we decided that it was time to support SIMD code in .NET. We introduced the System.Numerics namespace with , , , , and related types. These types expose a general-purpose API for creating, accessing, and operating on them using hardware vector instructions (when available). They also provide a software fallback for when the hardw...

.NET CorePerformance
Jun 13, 2019
Post comments count73
Post likes count0

Try the new System.Text.Json APIs

Immo Landwerth
Immo Landwerth

For .NET Core 3.0, we're shipping a brand new namespace called System.Text.Json with support for a reader/writer, a document object model (DOM), and a serializer. In this blog post, I'm telling you why we built it, how it works, and how you can try it. We also have a video: Getting the new JSON library The future of JSON in ....

.NET
Dec 4, 2018
Post comments count0
Post likes count0

Announcing .NET Core 2.2

Rich Lander [MSFT]
Rich Lander [MSFT]

We’re excited to announce the release of .NET Core 2.2. It includes diagnostic improvements to the runtime, support for ARM32 for Windows and Azure Active Directory for SQL Client. The biggest improvements in this release are in ASP.NET Core. ASP.NET Core 2.2 and Entity Framework Core 2.2 are also releasing today. You can download and get sta...

.NET Core.NET
Nov 28, 2018
Post comments count1
Post likes count0

Announcing .NET Framework 4.8 Early Access build 3694

namrata karnam
namrata karnam

We are happy to let you know that .NET Framework 4.8 is now feature complete and we have an early access build to share with you all! We will continue to stabilize this release and take more fixes over the coming months, and we would greatly appreciate it if you could help us ensure this is a high-quality release by trying it out and providing feed...

.NET Framework.NET
Nov 7, 2018
Post comments count23
Post likes count21

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