frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
360 articles Updated Page 6 of 15
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 6 of 15
Newest first
-
CQRS with .NET 10 (2026): Build Systems That Don’t Double-Charge, Don’t Oversell
medium.com Issue #387
A practical, production-minded guide with creative scenarios, sharp rules, and copy-paste checklists Continue reading on CodeX »
-
New in .NET 10 and C# 14: Multi-Tenant Rate Limiting
blog.elmah.io Issue #385
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
.NET Conf Recap: Top announcement and features
youtube.com Issue #385
Security Software False Positives
-
.NET 10 Linux Support: The Definitive Guide for Modern Developers
medium.com Issue #384
If you’re a .NET developer, you’ve probably heard the buzz around .NET 10 Linux support. But is it really ready for production workloads…
-
.NET 10 Linux Support: The Definitive Guide for Modern Developers
medium.com Issue #383
If you’re a .NET developer, you’ve probably heard the buzz around .NET 10 Linux support. But is it really ready for production workloads…
-
Stop Rebuilding API Plumbing: A Clean Architecture .NET 10 Web API Starter
medium.com Issue #382
Week 2 of an API project is where optimism goes to get a reality check.
-
.NET 10 and C# 14: The Game Has Changed
c-sharpcorner.com Issue #381
.NET 10 and C# 14: The Game Has Changed A principal engineer's perspective on why this release matters
-
10 Reasons to Upgrade to .NET 10
antondevtips.com Issue #379
Explore reasons to upgrade to .NET 10 and C# 14: Long-Term Support (LTS) Release, Performance improvements in ASP.NET Core and .NET, File-Based Apps, Server-Sent Events (SSE), Extension Members in C#
-
C # 14 in .NET: What is New and Improved
medium.com Issue #378
C# 14 is expected to arrive with .NET 10, and it continues Microsoft’s long-term goal of making C# one of the most powerful, safe, and…
-
.NET 10: Zip and GZip API Improvements
anthonygiretti.com Issue #378
Introduction Compression APIs like ZipArchive and GZipStream have been part of .NET for years. They’ve...
-
LeftJoin and RightJoin in EF Core 10: The End of GroupJoin Gymnastics
medium.com Issue #377
After 20 years of LINQ, we finally have native outer join operators
-
.NET 10: Post-Quantum Cryptography Comes to .NET
anthonygiretti.com Issue #377
Introduction Quantum computing is no longer just a research topic. As the technology matures, the...
-
New in .NET 10 and C# 14: Fast Model Validation for APIs
blog.elmah.io Issue #377
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
.NET 10 and C# 14 — Unbound generic types and nameof
henriquesd.medium.com Issue #375
Before C# 14, if you wanted to get the name of a generic class, like Logger, you could use the nameof operator, but you could not just refer to the class itself, instead, the compiler required you to ...
-
CodeMash 2026 – Workshop: Building and Deploying a .NET 10 App to Azure using Bicep and GitHub Actions
scottsauber.com Issue #374
Note: Slides do not tell the whole story of the talk, so take the stand alone slides with a grain of salt. Things may be taken out of context.
-
.NET 10 and C# 14 — The field keyword
henriquesd.medium.com Issue #374
In C#, we have two main options to use properties: Auto-implemented properties, which are concise but do not allow you to add logic in the property accessor, and the Manual properties, which require a...
-
.NET 10 runtime now available in AWS Lambda
news.google.com Issue #373
.NET 10 runtime now available in AWS Lambda
-
.NET 10 and C# 14 — Extension members
henriquesd.medium.com Issue #373
Now, in C# 14, we have Extension Members, which allow us to add static members, such as methods and properties, to a type via an extension. For example, this is an extension method that checks if a st...
-
New in .NET 10 and C# 14: Enhancements in APIs Request/Response Pipeline
blog.elmah.io Issue #373
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
.NET 10: Automatic support of TLS 1.3 on MacOS
anthonygiretti.com Issue #372
Introduction With .NET 10, macOS developers get a nice upgrade for free: TLS 1.3 is...
-
.NET 10: Streaming over WebSockets with the New WebSocket Stream API
anthonygiretti.com Issue #372
Introduction .NET 10 introduces a new WebSocket stream API that makes working with WebSockets feel...
-
File I/O Performance: Picking the Fastest Weapon in Your Arsenal
dotnettips.wordpress.com Issue #371
This article provides insights on the fastest file I/O methods for .NET 10, emphasizing benchmarks with 1 MB payloads.
-
C# 14 in .NET 10: language features that actually matter in production
medium.com Issue #371
C# 14 is not about syntactic novelty. It is about reducing friction in patterns teams already use: extensions, domain modeling, source…
-
New in .NET 10 and C# 14: EF Core 10's Faster Production Queries
blog.elmah.io Issue #370
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
.NET 10 and C# 14 — Null-conditional assignment
henriquesd.medium.com Issue #369
IQueryable vs IEnumerable: What Every .NET Developer Must Know