languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2466 articles Updated Page 8 of 99
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 8 of 99
Newest first
-
The IDisposable and using Truth Most of Us Missed in C#
medium.com Issue #493
We all write using every day. Very few of us stop to think about what it actually does.
-
12 C# OOP Concepts Every .NET Developer Must Know
medium.com Issue #493
When developers begin learning C#, one of the first things they hear is:
-
DRY Principle in C#: Don't Repeat Yourself - A Practical Guide With Real Code Examples
c-sharpcorner.com Issue #493
Master the DRY principle in C#: avoid duplicating knowledge, not just code. Learn practical examples and common pitfalls for robust software.
-
params IEnumerable : The Upgrade to params You Didn’t Know You Needed
medium.com Issue #492
The Old Constraint
-
Specification Pattern in C#
ngcheehou.medium.com Issue #492
Imagine you are a developer responsible for maintaining an HR employee portal. This is the Employee class:
-
Extension Members in C# 14: The Feature That’ll Start the Next “Is This Clean Code?” War
medium.com Issue #492
It lets you bolt a property onto a type you don’t own. Half my team called it elegant. The other half called it cursed. They’re both right.
-
I Deleted AutoMapper a Year Before It Went Commercial. Here’s the Bug That Made Me Do It.
medium.com Issue #492
A NullReferenceException, 14 frames deep into a library I’d never opened. The actual bug was one missing line.
-
LINQ in C#: The Complete Beginner’s Guide with Practical Examples (Part 1)
medium.com Issue #492
Learn LINQ from scratch with real-world examples and understand why it’s one of the most powerful features in C#.
-
PuppeteerSharp C# PDF: The Hidden Ops Cost (2026 Guide) - HackerNoon
hackernoon.com Issue #491
PuppeteerSharp C# PDF: The Hidden Ops Cost (2026 Guide) HackerNoon
-
How to Reorder Excel Columns in C# (No Office Required)
medium.com Issue #491
Are you a C# developer looking for a reliable way to automate Excel column reordering without installing Microsoft Excel? Whether you are…
-
7 C# Mistakes Beginners Make (And How to Avoid Them)
medium.com Issue #491
If you’re learning C#, you’ve probably written code that works — but not always in the best way.
-
…
medium.com Issue #491
A good code review is about more than finding bugs — it’s about improving code quality, maintainability, and collaboration.
-
Building an Invoice Automation Pipeline in C# with the Iron Suite
albertassaad.medium.com Issue #491
Read a spreadsheet, generate styled PDF invoices, put a “Pay Now” QR code on each one, and bundle the whole month into a single ZIP.
-
Why .ToList() Changes Everything in Your LINQ Queries
medium.com Issue #490
If you are working with C# and .NET, you probably use LINQ every day. You drop a .ToList() at the end of your query to fix a type mismatch…
-
.NET R&D Digest (June, 2026)
olegkarasik.wordpress.com Issue #490
This issue includes bits of AI, software development, C++, C#, diagnostics, architecture and of course .NET and .NET Internals.
-
LINQ in C#: All(), Any(), and Contains() [Interview Questions]
medium.com Issue #490
These methods look simple, but they frequently expose gaps in understanding quantifiers, domain intent, and edge cases — especially empty…
-
Closed class hierarchies: Exploring the .NET 11 preview - Part 4
andrewlock.net Issue #490
In this post I describe what a close closed hierarchy is, how to create one, and discuss why you might want to
-
GitHub Copilot Generated Our .NET Tests. It Missed What Mattered Most
medium.com Issue #489
There has been plenty of discussion recently about AI replacing parts of software testing, so we decided to see how far we could actually…
-
Microsoft’s Another Agent Framework
mareks-082.medium.com Issue #489
Given that there have been a few years of Cambrian explosion of agent frameworks, I’d be surprised if Microsoft didn’t have one. In fact…
-
How to Convert Excel to Markdown Using C#
medium.com Issue #489
Manually copying data from spreadsheets into documentation is tedious and error-prone. If you are a developer looking for a programmatic…
-
The One .NET 10 Method That Deleted Every GroupJoin I'd Ever Written
medium.com Issue #489
Twenty years of LINQ. One missing keyword. A report that silently lied for three weeks.
-
Async/Await in .NET: The Silent Saboteur of My Sanity
medium.com Issue #489
An unfiltered rant — with the fixes I wish someone had told me years ago
-
Adding .NET features takes ages, so we tried Claude Code
roundthecode.com Issue #489
Adding a new .NET feature taking ages? We tested Claude Code on a real migration task to see how much time it could save. The page Adding .NET features takes ages, so we tried Claude Code appeared on ...
-
Migrating Agentic Code Python -> C# Part 6 (final)
jesseliberty.com Issue #489
In the previous post we finished up creating our agents. You’ll remember that each of the agents declared nodes. We’re finally going to put them to use in a class BlogWorkflow that is going to take a ...
-
Snowflake and UUID v7: Generating Unique Identifiers in Distributed Systems
cristianonr.medium.com Issue #489
In distributed systems, generating unique identifiers is a surprisingly complex problem.