Showing results for C# - .NET Blog

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 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
Apr 5, 2021
14
0

Announcing Open Source C# standardization

Bill Wagner
Bill Wagner

The C# standards committee moved its work into Open Source. ECMA worked with the .NET Foundation, enabling C# developers worldwide to participate in the standardization effort. Visit the C# standards repo for more information.

.NETC#
Mar 4, 2021
20
0

.NET Interactive with SQL!| .NET Notebooks in Visual Studio Code

Maria Naggaga
Maria Naggaga

Read all about how SQL and Entity Framework Core developers can now start using .NET Interactive notebooks for quick iteration of notebooks while providing strongly typed APIs, code completion over tables and columns, and Language-Integrated-Query (LINQ). Quickly explore your data's shape and schema.

.NET CoreC#Azure