Skip to content
.N

.NET

8 articles
.NETJun 18, 2026 · 5 min

Producer/Consumer Pipelines in .NET with System.Threading.Channels

The producer/consumer problem is one of those patterns that every backend eventually needs and almost everyone implements badly the first t…

By Liam Mercer
.NETJun 14, 2026 · 7 min

.NET 11 (STS) vs .NET 10 (LTS) — Which Should a Startup Choose in 2026?

Every November, .NET teams face the same question: stay on the proven LTS release, or jump to the fresh STS one? The advice the first page…

By Ethan Cole
.NETJun 10, 2026 · 7 min

Dependency Injection Lifetimes in ASP.NET Core — Singleton, Scoped, Transient, and the Captive Dependency Trap

ASP.NET Core's built-in dependency injection container is so easy to use that most developers learn just enough of it to register a service…

By Ethan Cole
.NETJun 5, 2026 · 6 min

Span<T> and the Art of Allocation-Free C#

Most performance problems in .NET are invisible until the moment they aren't. The code is correct, the tests pass, the throughput looks fin…

By Ethan Cole
.NETMay 28, 2026 · 9 min

Async/Await in C# — The Mistakes That Cause Deadlocks and How to Avoid Them

async and await are among the most-used keywords in modern C#, and among the most misunderstood. They make asynchronous code read like sync…

By Liam Mercer
.NETMay 6, 2026 · 6 min

NET Aspire 13 Makes Distributed Development Worth Doing Again

There is a kind of developer pain that is so normalised it stopped generating complaints years ago. You join a team building a modern distr…

By Ethan Cole
.NETMay 4, 2026 · 7 min

What .NET 10 Actually Changes for Working Developers

Microsoft released .NET 10 in November 2025 as a long-term support version — meaning it will be supported until November 2028. That LTS tag…

By Admin
.NETMay 1, 2026 · 7 min

Why Your Async Code Deadlocks in .NET (and How to Fix It Properly)

The #1 question new (and not-so-new) .NET developers ask about async/await: why does it deadlock? Here's the real reason — and the fix, wit…

By Admin