Top .NET Blogs Posts of 2024
by James Montemagno
posted on: December 23, 2024
Let's take a look back at the top .NET blogs from 2024 from exciting announcements, deep dives on new features, and so much more.
by James Montemagno
posted on: December 23, 2024
Let's take a look back at the top .NET blogs from 2024 from exciting announcements, deep dives on new features, and so much more.
by Gérald Barré
posted on: December 23, 2024
If you want to detect when a file is created, modified, or deleted, you can use the FileSystemWatcher class in .NET. However, this is only available when the application is running. What if you want to detect changes that occurred while the application was not running? The USN Journal is a feature
by .NET Team
posted on: December 17, 2024
.NET Conf 2024 is over, but you can catch up with all the announcement and fun with video recordings, slides, demos, and more.
by Andrew Lock
posted on: December 17, 2024
In this post I describe how I build LaTeX projects on a Windows machine by using Docker and the blang/latex image…
by Bruno Capuano
posted on: December 16, 2024
Discover how to use Microsoft.Extensions.VectorData to implement semantic search using Qdrant and Azure AI Search
by Gérald Barré
posted on: December 16, 2024
A Software Bill of Materials (SBOM) is a list of components in a piece of software. It is a critical part of the software supply chain, as it helps to identify and track the components used in a software project. In this post, I describe how to easily generate a Software Bill of Materials (SBOM) fo
by Ardalis
posted on: December 15, 2024
This post is part of the C# Advent Calendar 2024 - check out all of the C# articles from this year! C# events are a powerful feature of the…Keep Reading →
by Sergio Pedri
posted on: December 12, 2024
We're happy to announce the official launch of the .NET Community Toolkit 8.4 release, featuring support for partial properties for the MVVM Toolkit generators, new analyzers, bug fixes and enhancements, and more!
by Klaus Loeffelmann
posted on: December 10, 2024
With .NET 9, we’re bringing a suite of new async APIs to WinForms, aimed at making UI updates, dialog interactions, and control management more efficient.
by Andrew Lock
posted on: December 10, 2024
In this post I show how you can use the YamlDotNet source generator to do strongly-typed serialization and deserialization, even in Native AOT apps…