C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 22 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 22 of 94
Newest first
-
I Misused C# Records for 12 Months — The Painful Lessons Real Production Code Taught Me
blog.stackademic.com Issue #394
Why my obsession with immutability backfired in ASP.NET Core projects, broke EF Core tracking, and forced a refactor I never saw coming. Continue reading on Stackademic »
-
C# ASP.NET Core MVC: Building Your First Application — A Complete Guide from Models to Controllers
medium.com Issue #393
A Step-by-Step Tutorial for Creating Models, Views, and Controllers from Scratch
-
-
C# .Net 10 MinimalAPI: Weather Service Migration from Azure to AWS — Part 4
pkoretic.medium.com Issue #393
You never know when you will need to do this.
-
Advanced LINQ Techniques Every C# Developer Should Know
c-sharpcorner.com Issue #392
Unlock C# LINQ's full potential! Master advanced techniques for efficient querying, performance optimization, and avoiding common pitfalls. Elevate your .NET skills!
-
IEnumerable vs. IQueryable - Understanding the “Where” and “When” of Data
medium.com Issue #392
If you’ve spent any time working with C# and LINQ, you’ve likely seen these two interfaces popping up everywhere. At first glance, they…
-
Flatten Arrays and Collections in C#: The Definitive Guide for Fast, Clean Code
medium.com Issue #391
If you’ve ever wrangled with multi-dimensional arrays, nested lists, or jagged collections in C#, you know the pain: you just want a…
-
Async/Await Explained from First Principles
medium.com Issue #391
1. All programming languages start from the same philosophy All mainstream programming languages are built on the same foundational…
-
Why async void Should Almost Never Be Used in .NET Core
medium.com Issue #391
Asynchronous programming is a core part of modern .NET applications. The async and await keywords make it easier to write non-blocking…
-
-
Understanding the Microsoft.Agents.AI API — A .NET Developer’s Guide
medium.com Issue #391
AI agents are changing how we build intelligent applications — from chatbots and workflow assistants to decision automation systems.
-
Learn Visual Studio Code in 15 minutes: 2026 Official Beginner Tutorial
youtube.com Issue #391
Get started in Visual Studio Code in just 15 minutes in this easy-to-follow tutorial! Bluesky: https://bsky.app/profile/vscode.dev
-
.NET Source Generators with Jason Bock
dotnetrocks.com Issue #391
Why would you write code to generate code? Carl and Richard talk with Jason Bock about his experiences using modern .NET source generators to optimize certain aspects of applications. Jason talks abou...
-
Part 2: Build an MCP Server in C#/.NET and Enrich It With Repository Context
medium.com Issue #391
The .NET ecosystem now has an official C# MCP SDK plus project templates that get you from “zero” to a working server fast.
-
C# Rounding Demystified: The Ultimate Guide to Rounding Numbers in .NET
medium.com Issue #390
If you’ve ever Googled “C# round” hoping for clear, practical guidance on rounding numbers in .NET, you’re not alone. Rounding is one of…
-
C# vs Java — Which Language Should You Choose in 2026?
medium.com Issue #390
Choosing between C# and Java in 2026 isn’t just about syntax or company loyalty — it’s about building software that lasts, scales, and…
-
The Real Difference Between record and class Isn’t About Syntax
donmahsu.medium.com Issue #390
When I first saw record, I honestly couldn’t grasp the point at all.
-
How to Use Cursor for .NET Development: Top 5 Ways Explained
medium.com Issue #390
Do you need expert help for software development? Explore how you can use cursor for .NET development in this guide
-
-
Are exceptions exposing vulnerabilities in your .NET App?
roundthecode.com Issue #390
Unhandled exceptions in ASP.NET Core can expose sensitive data. Learn when it happens, why it's dangerous, and how to fix it. The page Are exceptions exposing vulnerabilities in your .NET App? appeare...
-
How to Set Background Colors and Images in Word Documents Using C#
medium.com Issue #390
Automating Word document formatting is a common requirement in .NET development. Setting document backgrounds — whether solid colors or…
-
How to Demonstrate Deep C# Knowledge: A Guide Through Delegates and Events
medium.com Issue #389
Preparing for a C# interview? Or looking to validate your senior-level expertise? Here’s the truth: nothing showcases your advanced grasp…
-
Hire C# Developer: How Companies Find the Right Talent for Scalable Software
c-sharpcorner.com Issue #389
Looking to hire a C# developer for your startup or enterprise project? Learn how to find skilled C# and .NET developers, avoid hiring mistakes, and work with experienced consultants and architects to ...
-
Result Pattern: Handling Expected Failures Without Using Exceptions
donmahsu.medium.com Issue #389
Recently, while I was cleaning up some business logic in an old system, I noticed that almost all error handling was done with try/catch…
-
5 Advanced Async Concepts That Make Sense Once You Understand the Runtime
medium.com Issue #388
Why TaskCompletionSource, custom awaiters, and continuations behave the way they do Continue reading on CodeToDeploy »