C# 14 spans, Minimal APIs, and EF Core gains
A varied .NET roundup with C# 14 span improvements, Minimal API migration advice, EF Core tuning, MediatR logging, Azure, and more.
Jasen's top three picks
- 1 Spans Got Easier in C# 14
singhsukhpinder.medium.com
C# 14 span conversions are the sort of small language change that can remove a lot of ceremony.
- 2 VS Code Live at GitHub Universe - Day 1 - Live Coding with Copilot!
youtube.com
The GitHub Universe live coding session is more about the workflow than the demo, and that’s useful in itself.
- 3 🌐 Understanding WCF Service in .NET with Example and Benefits
c-sharpcorner.com
The Minimal APIs migration post stands out because it tackles auth and filters, not just happy-path routing.
Editor's note
I kept this one deliberately mixed: language features, architecture, performance, and a few legacy corners all showed up together. The C# 14 span piece and the EF Core optimization challenge are the kind of practical reads that can change day-to-day code, while the Minimal APIs migration post is useful if you’re untangling a real app. The Unity and old-school WebForms items are also a reminder that the .NET world is still wider than the newest templates.
Today's articles
Spans Got Easier in C# 14
singhsukhpinder.medium.com
How C# 14 turns Span<T> patterns into mainstream practice
Read articleVS Code Live at GitHub Universe - Day 1 - Live Coding with Copilot!
youtube.com
How to Create Custom Middleware in ASP.NET Core
Topics: ASP.NET Core GitHub Copilot Visual Studio Code
Read article🌐 Understanding WCF Service in .NET with Example and Benefits
c-sharpcorner.com
Explore WCF in .NET! Learn to build robust, service-oriented applications with this comprehensive guide. Includes examples, benefits, and architecture overview.
Topics: ASP.NET Core .NET Framework
Read articleAzure with .NET
medium.com
In this comprehensive article, we explore Azure-integrated .NET 8 hybrid cloud architectures, focusing on on-prem to cloud data…
Read articleIs C# Dying in 2025?
blog.probirsarkar.com
Every few years, the same question resurfaces:
Read articleMigrating ASP.NET MVC to Minimal APIs: Handling Authentication, Filters, and Best Practices
medium.com
Disclaimer: This article was generated with AI assistance based on real-world migration experience from a production ASP.NET Core MVC API…
Topics: ASP.NET Core Authentication Minimal APIs
Read articleEF Core Performance Optimization Challenge | 233× Faster with Codes.
medium.com
How to squeeze major performance gains from Entity Framework Core (EF Core) in .NET 9 using Clean Architecture, benchmarks &…
Topics: Clean Architecture EF Core Performance
Read articleFile Handling in C#: Read, Write, and Manage Files Easily
c-sharpcorner.com
Master file handling in C# with this guide! Learn to read, write, and manage files in ASP.NET Web Forms using System.IO. Includes real-time examples and best practices.
Topics: C# .NET Framework
Read articleWhy Use the Unit of Work Pattern in .NET
malshikay.medium.com
Build Consistent, Maintainable, and Testable ASP.NET Core Applications with the Unit of Work Pattern
Topics: Design Patterns .NET Core Unit Testing
Read article10 Mind-Blowing C# Record Features You’re (Definitely) Not Using Right
blog.stackademic.com
Most developers barely scratch the surface of what Records can do. Continue reading on Stackademic »
Topics: C# Unit Testing
Read articleRemove spaces and special characters from a string using C#
c-sharpcorner.com
Learn how to remove spaces and special characters from a string in C# using Regex. This tutorial provides a real-time example with WebForms and clear explanations. Clean your strings effectively!
Topics: C# System.Text.Json
Read articleDeploying Web Apps on Azure App Service: A Step-by-Step Guide Using C#
c-sharpcorner.com
Deploying Web Apps on Azure App Service: A Step-by-Step Guide Using C#
Topics: ASP.NET Core Azure
Read articleHow to Create a Health Bar System in Unity (Complete Beginner’s Tutorial 2025)
medium.com
Introduction
Topics: .NET MAUI
Read article11 No-Drama Ways to Organize Minimal API Endpoints in Clean Architecture (with Copy-Paste Code)
medium.com
If you want the full source code, join our community: Here
Topics: Clean Architecture .NET Core Minimal APIs
Read article🚀 Batch Processing in C# using async and await — The Smart Way to Handle Workloads
c-sharpcorner.com
Master batch processing in C# using async/await! Learn how to efficiently handle large workloads, improve performance, and scale your applications. Real-world examples included.
Topics: C# .NET Core Performance
Read articleDubious security vulnerability: Denial of service by loading a very large file
devblogs.microsoft.com
A denial of service vulnerability report was filed against a program, let's call it Notepad. The actual text of the report was very hard to understand because the grammar was all messed up. I'll give ...
Topics: .NET Framework Security
Read articleBinary Search From Basics
mariemoalla.medium.com
Binary Search is one of the most fundamental, and powerful, algorithmic techniques every developer should know.
Topics: C# Performance
Read articleSolve Logging as a Cross-Cutting Concern with MediatR in .NET 9 (Clean, Composable, Copy-Paste)
medium.com
Logging shouldn’t leak into every handler like glitter after a craft project. Use MediatR pipeline behaviors to keep logging centralized…
Topics: Clean Architecture .NET 9 MediatR
Read article.NET 10 Broke My Brain (in the Best Way): Farewell, Program.cs
medium.com
The day we said goodbye to the entry point that shaped our C# lives. Continue reading on Towards Dev »
Read articleHow to Use Arrays and Lists in ASP.NET C# WebForms
c-sharpcorner.com
Master data handling in ASP.NET WebForms! Learn to use Arrays (fixed-size) and Lists (dynamic) with C# examples. Display data in GridViews and more. Ideal for developers!
Topics: ASP.NET Core .NET Framework
Read articleDelegates and Events in C# Windows Forms
c-sharpcorner.com
Master C# delegates and events in Windows Forms! Learn to build responsive UIs with real-time updates, like a file upload progress tracker. Essential for event-driven apps.
Topics: C# .NET Framework
Read articleBlazing Fast Caching Service in .NET 9 (Redis-Compatible) — A Copy-Paste Guide That Actually Scales
medium.com
If your API is doing the same heavy work for the same inputs all day, you don’t need more CPUs — you need a cache. Here’s a…
Topics: C# .NET Framework
Read articleUnderstanding Reflection in C#
c-sharpcorner.com
Explore C# Reflection in ASP.NET WebForms! Dynamically inspect types, create objects, and invoke methods at runtime. Perfect for plugins and dynamic UIs.
Topics: .NET 9 Performance Redis
Read article