.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 18 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 18 of 59
Newest first
-
The New .NET SLNX Solution File Format
henriquesd.medium.com Issue #353
To migrate your solution to a .slnx file, you can do it via the command line or via Visual Studio (version 2022/2026+). In this article, I will show how to migrate an existing solution to the .slnx fi...
-
Clean Architecture in .NET: The Foundation That Changes Everything
medium.com Issue #353
Part 1 — Understanding the “Why” Before the “How”
-
-
Busy .NET Developer's Guide to Orleans
visualstudiomagazine.com Issue #353
Ted Neward’s "Busy .NET Developer's Guide to Orleans" session at Visual Studio Live! Las Vegas (March 18, 2026) walks .NET developers through the Orleans actor model, showing how it simplifi...
-
The Full Stack Developer is a Myth (And It’s Ruining Your Career)
medium.com Issue #352
Why trying to be a “Senior” in both .NET and React is making you mediocre at both.
-
Dot NET: From Framework to Core and Beyond
medium.com Issue #352
The .NET architecture has significantly transformed after its introduction by Microsoft in the early 2000s. Moreover, the platform has…
-
Using Strategy Pattern with Dependency Injection in ASP.NET Core
blog.elmah.io Issue #350
Selection logic is a prominent part of many applications. Whether you add a simple environment toggle, a UI mode decision, or apply a discount, you have to rely on user input. Sometimes, simply using ...
-
Avoid These 6 HttpClient Mistakes That Quietly Kill Your Throughput
medium.com Issue #350
(And why your API slows down the moment traffic gets real)
-
Generics in C#: The Simple Idea That Makes .NET Core Fast & Safe
medium.com Issue #350
When you hear “Generics,” it sounds like a complicated C# feature… but the truth is simple:
-
The Practical Guide to ConfigureAwait(false) in 2025 — Stop Using It Blindly
medium.com Issue #349
Most .NET developers still treat ConfigureAwait(false) like a superstition.
-
Custom Middleware in .NET Core
medium.com Issue #349
If you’ve shipped production .NET applications, you already know middleware isn’t just a configuration detail — it’s the architectural…
-
Treating warnings as errors in dotnet the right way.
medium.com Issue #349
Set TreatWarningsAsErrors only in Release configuration. It stops the setting from making it hard to play with the code…
-
Clean Code in C#: A Step-by-Step Guide to SonarQube & .NET
medium.com Issue #349
We’ve all been there. You push code, merge it, and three weeks later, a critical bug surfaces because of a null reference exception deep…
-
-
Modernization Made Simple: Building Agentic Solutions in .NET
youtube.com Issue #349
Learn more: https://aka.ms/agentic-modernization Docs: https://learn.microsoft.com/dotnet
-
The New .slnx Solution Format (migration guide)
milanjovanovic.tech Issue #349
See what changes in .slnx, how to convert your existing .sln, and what to watch out for in CI.
-
Writing Good Tests in TDD
medium.com Issue #349
Ever run a test suite where everything’s green… but you still don’t trust it?
-
Laravel vs. .NET Core: A Real Developer’s No-Nonsense Comparison
medium.com Issue #348
Laravel or .NET Core — most answers are influenced by preference, community hype, or ecosystem comfort.
-
Async/Await Is Killing Your .NET Performance: The Value-Task Masterclass
medium.com Issue #348
Async/Await is slow. Master ValueTask and advanced C# concurrency patterns to write allocation-free, lightning-fast .NET APIs.
-
How to Detect Spam from Text Input in C# .NET Core
cloudmersive.medium.com Issue #348
Detecting and blocking spam inputs in our application starts with accurately classifying what spam is.
-
The C# Features You’re Not Using (But Should Be)
medium.com Issue #348
Stop writing code like it’s 2015
-
Understanding Classes and Types of Classes in C# – A Complete Guide
c-sharpcorner.com Issue #348
This article provides a complete and easy-to-understand guide to classes and all types of classes in C#. It covers the fundamentals of what a class is, how objects work, and explains each class type—i...
-
3 Ways to Check for null in C# — Which One Do You Use?
medium.com Issue #348
Null checks are everywhere in our code. But modern C# gives us cleaner, smarter, and more expressive ways to handle them.
-
In-Memory Caching in .NET (IMemoryCache)
medium.com Issue #347
Package used: Microsoft.Extensions.Caching.Memory
-
Understanding Parallel.ForEachAsync in .NET
medium.com Issue #347
Parallel.ForEachAsync was introduced to us with .NET 6. It is one of the most important innovations brought by .NET 6, because it enables…