.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 28 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 28 of 59
Newest first
-
Boost Your .NET Projects: Simplify Unique Key Generation with KeyGenerator in Spargine
dotnettips.wordpress.com Issue #296
The KeyGenerator in Spargine is an efficient tool for generating unique keys using GUIDs, ideal for object IDs and database records. It offers methods for creating keys with or without prefixes. This ...
-
-
C# Channels Demystified: Stop Fighting Threads and Start Writing Cleaner Code
blog.stackademic.com Issue #295
Part 1 in a beginner-friendly guide to thread-safe async messaging in .NET Continue reading on Stackademic »
-
Compress HttpClient requests with GZIP
josef.codes Issue #295
By streaming the gzip compression instead of using MemoryStream, we can significantly reduce memory allocation and avoid OutOfMemoryExceptions with large payloads.
-
Null-Conditional Assignment in C# 14
c-sharpcorner.com Issue #295
C# 14 introduces null-conditional assignment (?.=), a syntactic sugar that simplifies null checks before assignments. This feature reduces boilerplate code, enhances readability, and aligns assignment...
-
5 Traps That Break .NET Background Services in Production (and How to Fix Them)
medium.com Issue #295
Five production traps with .NET BackgroundServices — and the patterns that kept them from silently killing our system.
-
.NET 10 Features I Can’t Wait to Use
medium.com Issue #295
C# 14 is bringing a wave of subtle yet powerful improvements designed to boost developer productivity, improve code readability, and…
-
From Assemblies to Objects: Demystifying .NET’s Core Building Blocks
medium.com Issue #294
Refined Topics
-
Untangling .NET, .NET Core, ASP.NET, and ASP.NET Core (Without the Confusion)
medium.com Issue #294
When I first stumbled across .NET, I honestly thought it was just another programming language like Java or Python. Then I ran into terms…
-
.NET’de Type-Safe Configuration Management: ConfigPlus ile Güvenli Ayar Yöntemi
medium.com Issue #294
Modern .NET uygulamalarında configuration yönetimi nasıl güvenli,type-safe,environment-aware hale getirilir? ConfigPlus kütüphanesini…
-
Asynchronous Programming in C# with async/await
medium.com Issue #293
My Journey into Building Non-Blocking Applications. Continue reading on .Net Programming »
-
Async Disposal in C#: When and How to Use IAsyncDisposable
medium.com Issue #293
Discover the key use cases of IAsyncDisposable in modern C# and how it improves async workflows.
-
Top 10 Open Source .NET Projects and Libraries for InsurTech in 2025
faciletechnolab.com Issue #293
Discover the top 10 open-source .NET projects and libraries revolutionizing InsurTech in 2025. Boost efficiency with AI, streamline claims processing, and enhance customer experience.
-
C# Channels Uncovered: Bounded, Unbounded, and How to Pick the Right One
medium.com Issue #293
Part 2 in a beginner-friendly guide to thread-safe async messaging in .NET
-
From Entity Framework to EF Core: What Every .NET Beginner Should Know
medium.com Issue #293
When developers talk about “EF” today, they usually mean Entity Framework Core (EF Core). But it wasn’t always like this. Entity Framework…
-
Background Services in .NET: IHostedService vs Worker Service
medium.com Issue #292
IHostedService vs Worker Service: A Detailed Guide for .NET Developers to Choose the Right Background Service Approach.
-
Stop Ignoring Options: 5 Cleaner and Safer Configurations in .NET
blog.stackademic.com Issue #292
Small .NET features, big impact, master configuration, runtime switches, and testable time without headaches. Continue reading on Stackademic »
-
Why Dot Net Is a Must for Modern Developers
medium.com Issue #292
Introduction: Embracing Dot Net in Today’s Tech World
-
Exploring Text-to-Image capabilities in .NET
devblogs.microsoft.com Issue #292
Learn how to generate images from natural language prompts using the universal abstractions in Microsoft's extensions for .NET AI. The post Exploring Text-to-Image capabilities in .NET appeared first...
-
-
Building Microservices with C# and .NET Core
medium.com Issue #291
How I architected, developed, and deployed microservices using C# and .NET Core in real-world projects. Continue reading on .Net Programming »
-
Why C# and .NET are the Programmer’s Best Friends in Today’s World
medium.com Issue #291
In this post, we’d like to expand on why C# and .NET should be in the forefront of your development toolkit
-
-
Access Modifiers in C#
c-sharpcorner.com Issue #291
Master C# access modifiers (public, private, protected, internal, protected internal, private protected) to control code visibility and build robust, maintainable applications. Learn how to encapsulat...
-
Using CancellationToken in .NET: Graceful Shutdowns Explained
medium.com Issue #291
Introduction: The Importance of Graceful Shutdowns in .NET