languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 9 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 9 of 93
Newest first
-
Streaming data without loading everything into memory
csharpdigest.net Issue #465
IAsyncEnumerable lets you process large datasets one item at a time instead of loading everything into memory
-
C# 14 New Features Explained with Real-World Examples
c-sharpcorner.com Issue #464
Explore C# 14's powerful new features with real-world examples! Boost productivity, reduce boilerplate, and enhance performance in your .NET applications.
-
Improving C# Memory Safety
devblogs.microsoft.com Issue #464
We're in the process of significantly improving memory safety in C#. The unsafe keyword is being redesigned to inform callers that they have obligations that must be discharged to maintain safety, doc...
-
Pragmatic Monads for .NET Developers
medium.com Issue #464
For sometime now, whenever I heard about Monads, my eyes glazed over. As a .NET developer, the heavy academic jargon — functors, category…
-
.NET (OK, C#) finally gets union types🎉: Exploring the .NET 11 preview - Part 2
andrewlock.net Issue #464
In this post I discuss the support for union types released in .NET 11, how they're implemented, the choices made, and how to create your own
-
Mastering C# Delegates: The Remote Controls That Power Your Code
medium.com Issue #464
Say goodbye to messy if-else chains and learn how C# delegates power events, design patterns, LINQ, and cleaner, more flexible code. Continue reading on TechBits@Argusoft »
-
C# Replace Text in Word Documents (Regex Replace)
medium.com Issue #464
In many enterprise applications, programmatically modifying Word documents is a common requirement — whether it’s batch‑updating…
-
C# Word Library: Comparing 7 Options for .NET Developers in 2026
c-sharpcorner.com Issue #463
Explore the top 7 C# Word libraries for .NET in 2026. Compare features, licensing, and performance to choose the best option for document generation, parsing, and conversion.
-
C# 15 and the Future of .NET: A Comprehensive Deep Dive into Union Types and the Evolution of C# 14
medium.com Issue #463
Introduction: The Next Evolution of C#
-
We built an AI tool for .NET/C# developers in 2 days
roundthecode.com Issue #463
We built an AI tool for .NET and C# developers in just 2 days using Claude's API. Here's how we did it, the prompts we used, and how you can try it now. The page We built an AI tool for .NET/C# develo...
-
Removing Duplicate Rows in Excel Using C#
medium.com Issue #461
Duplicate rows are a common nuisance when working with Excel data. Whether you’re cleaning data, generating reports, or performing…
-
Delegates vs Events in C# [Part 1] Control, Ownership, and Safe Communication
medium.com Issue #461
Part 1: 🍎 Fruit & Vegetable Production Systems
-
Stop Writing Foreach Loops for This
medium.com Issue #461
Three LINQ methods that replace the loops you write on autopilot
-
SOLID Principles in C#- Complete Guide with Real-World Examples
medium.com Issue #461
Software projects usually start simple.
-
I stopped using 6 design patterns in C#
medium.com Issue #461
I used to be a design pattern evangelist. Factory classes everywhere. Singletons for shared services. Visitors for traversing object trees…
-
dotnet run hello.cs — C# Finally Got Its "Python Moment" in .NET 10
medium.com Issue #461
How File-Based Apps in C# 14 & .NET 10 kill the boilerplate and bring scripting-speed prototyping to the world’s most powerful typed…
-
Concurrency & Parallelism in C# — From Threads to TPL
medium.com Issue #461
1. Process vs Thread
-
I let GitHub Copilot write all my C# database code for a month
medium.com Issue #461
Here’s what almost broke production.
-
Why DSA Matters for Every C# .NET Developer
medium.com Issue #461
In the fast-paced world of software development, frameworks and libraries often steal the spotlight.
-
Stop Writing If/Else Chains. C# Pattern Matching Does It Better.
medium.com Issue #460
Switch expressions, when guards, and property patterns make your condition logic shorter and a lot easier to read.
-
Understanding async/await in C# With Simple Examples
medium.com Issue #460
Simple Examples for Beginners
-
I Built a Visual Studio Extension to Fix the Most Annoying C# Workflow — Here’s How
medium.com Issue #460
Stop pressing Ctrl+. for every missing `using`. OhUsings imports them all at once. Continue reading on CodeCampsis »
-
Understanding Stacks and Queues in C#: A beginner-friendly guide
medium.com Issue #460
Data Structures are the Backbone of efficient Software Development. Among the most commonly used data Structures in C# are Stack and Queue…
-
Creating a Simple MCP Server in .NET
pmichaels.net Issue #459
In my previous post, I covered how to interact with a local LLM from .NET using LM Studio. In this post, I’m going to take that a little…
-
When Your Use Case Half-Succeeds: Designing for Partial Failure in .NET
milanjovanovic.tech Issue #459
A use case isn't a transaction. The moment it touches more than one system, you are dealing with partial failure. Here's how I classify side effects and design use cases that fail loudly and recover s...