Announcing .NET 8
by Gaurav Seth
posted on: November 14, 2023
Today Microsoft announced the availability of .NET 8, the latest version of one of the world’s leading programming languages and development platforms.
by Gaurav Seth
posted on: November 14, 2023
Today Microsoft announced the availability of .NET 8, the latest version of one of the world’s leading programming languages and development platforms.
by Glenn Condron [MSFT]
posted on: November 14, 2023
Introducing .NET Aspire: A cloud ready stack for building observable, production ready, distributed applications
by Immo Landwerth
posted on: November 14, 2023
November 2023 Security and Quality Rollup Updates for .NET Framework
by Rahul Bhandari (MSFT)
posted on: November 14, 2023
Check out latest November 2023 updates for .NET 7.0 and .NET 6.0
by RNDr. Tomáš Grošup, Ph.D.
posted on: November 14, 2023
Read what is new in F# 8 - the language, compiler tooling and FSharp.Core standard library
by Kathleen Dollard
posted on: November 14, 2023
Announcing the official release of C# 12, including collection expressions, primary constructors, and more!
by Gérald Barré
posted on: November 13, 2023
Lambdas can use variables from the enclosing methods (documentation), unless the lambda is static. When a variable is captured, the compiler generates code to create the bridge between the enclosing method and the lambda. Let's consider this simple example:C#copypublic void M() { var a = 0;
by Steve Gordon
posted on: November 10, 2023
Those who have read some of my previous performance-focused blog posts will know that I use the dotMemory product from JetBrains when working on code optimisations. In this post, I want to demonstrate a really handy, but somewhat underutilised feature, to automate the collection of snapshots in a repeatable way. I use these steps quite […]
by Andrew Lock
posted on: November 07, 2023
In this post I describe how to read both JSON and binary data from a multipart/form-data request using two approaches - MultipartReader and IFormFile…
by Gérald Barré
posted on: November 06, 2023
There are formats where you need to read a stream of JsonDocuments separated by a character such as a new line. For instance, you can try to read data from a ndjson response. In this post, I'll show you how to read such a stream.A basic solution would be to split the stream by the separator and the