Showing results for August 2021 - .NET Blog

Aug 30, 2021
0
2

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
31
1

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 16, 2021
0
0

.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 10, 2021
69
0

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
54
2

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
41
2

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