Showing results for August 2021 - .NET Blog

Aug 30, 2021
Post comments count0
Post likes count2

Learn to build applications with F#

Jon Galloway
Jon Galloway

Want to learn how to write write succinct, robust, and performant code with F#? Here's everything you need to get started today!

.NET.NET CoreF#
Aug 18, 2021
Post comments count31
Post likes count1

Understanding the cost of C# delegates

Paulo Morgado
Paulo Morgado

Delegates are widely used in C# (and .NET, in general), but it's not always obvious to the developer what code they write ends up generating. In this post, I'll show the various forms to make you aware of their costs.

.NETC#.NET Internals
Aug 17, 2021
Post comments count93
Post likes count10

Performance Improvements in .NET 6

Stephen Toub - MSFT
Stephen Toub - MSFT

.NET 6 is chock-full of exciting performance improvements.

.NETC#Performance
Aug 16, 2021
Post comments count0
Post likes count0

.NET Core 2.1 container images will be deleted from Docker Hub

Richard Lander
Richard Lander

Starting on August 21st, .NET Core 2.1 Docker container images will no longer be available on Docker Hub, but exclusively on Microsoft Container Registry (MCR). Read on for more information.

Containers.NET.NET Core
Aug 16, 2021
Post comments count22
Post likes count2

Introducing DevOps-friendly EF Core Migration Bundles

Jeremy Likness
Jeremy Likness

EF Core's new migration bundles generate binary artifacts that you can use to deploy schema and data changes as part of your continuous delivery process.

.NETASP.NET.NET Core
Aug 10, 2021
Post comments count69
Post likes count0

Announcing .NET MAUI Preview 7

David Ortinau
David Ortinau

.NET MAUI Preview 7 is now available with new layouts, improved accessibility, font scaling, and more.

.NET.NET MAUI
Aug 10, 2021
Post comments count54
Post likes count3

Preview Features in .NET 6 – Generic Math

Tanner Gooding [MSFT]
Tanner Gooding [MSFT]

If you’ve ever wanted to use operators with generic types or thought that interfaces could be improved by supporting the ability to define static methods as part of their contract, then this blog post is for you. With .NET 6 we will be shipping a preview of the new generic math and static abstracts in interfaces features.

.NETC#.NET Internals
Aug 10, 2021
Post comments count41
Post likes count4

String Interpolation in C# 10 and .NET 6

Stephen Toub - MSFT
Stephen Toub - MSFT

Text processing is at the heart of huge numbers of apps and services, and in .NET, that means lots and lots of . creation is so fundamental that a myriad of ways of creating them have existed since .NET Framework 1.0 was released, and more have joined the fray since. Whether via 's constructors, or , or overrides, or helper methods on like or ...

.NETC#Performance