C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 26 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 26 of 94
Newest first
-
Dependency Injection Made Simple: A Practical .NET Core Guide
c-sharpcorner.com Issue #370
Unlock the power of Dependency Injection (DI) in ASP.NET Core! Learn how DI promotes loose coupling, testability, and scalability for robust .NET applications.
-
.NET Concurrency, Parallelism and async/await
medium.com Issue #370
Concurrency, parallelism, and async/await are among the most misunderstood concepts in modern .NET applications. They are often mixed…
-
C# 14 and Clean Architecture: modeling expressive domains without boilerplate
medium.com Issue #370
The best way to evaluate a language feature is simple: does it reduce modeling and maintenance cost without compromising architecture? In…
-
From Confusion to Clarity: My Journey Through C#, .NET, Azure DevOps, and Corporate Life
medium.com Issue #370
You know what’s funny? Everyone online seems to have it figured out. Perfect portfolios. Smooth career transitions. “10x developer”…
-
My thoughts on Vibe Coding as a Senior .NET Engineer
medium.com Issue #370
My take on where we are, where we are headed, and how to stay relevant.
-
The Ultimate .NET Developer Roadmap 2026 - AI, Backend, Blazor & Full-Stack
codewithmukesh.com Issue #369
A comprehensive, practical roadmap for .NET developers covering C#, AI Tools, ASP.NET Core APIs, Blazor, databases, architecture, cloud, and DevOps. Choose your path: Backend, Frontend with Blazor, or...
-
Factory Pattern C#
c-sharpcorner.com Issue #369
Learn the Factory Pattern in C# with a practical example! Discover how to decouple object creation, improve maintainability, and simplify your code. #csharp
-
C# for Everything: One Language Powering the Modern Software World
c-sharpcorner.com Issue #369
C# is no longer just a backend language. Learn how C# powers web, cloud, mobile, desktop, games, and AI in 2026 with one ecosystem.
-
.NET 10 and C# 14 — Null-conditional assignment
henriquesd.medium.com Issue #369
IQueryable vs IEnumerable: What Every .NET Developer Must Know
-
5 C# Secrets That Make LINQ Queries 10x Faster (You’re Using It Wrong)
medium.com Issue #369
I have a confession: for years, I shipped slow code.
-
Modern C# Error Handling Patterns You Should Be Using in 2026
medium.com Issue #369
Error handling in C# has matured significantly with modern .NET releases. In 2026, effective error handling is less about blanket…
-
Everything You Need to Know About List in C#
medium.com Issue #368
Why treating it as “just a dynamic array” eventually bites you Continue reading on CodeToDeploy »
-
What Is .NET? What's C# And F#? What's The .NET Ecosystem? .NET Core Explained, What Can .NET Build? Click Through The Next Document (u0oe1niXR8)
news.google.com Issue #368
What Is .NET? What's C# And F#? What's The .NET Ecosystem? .NET Core Explained, What Can .NET Build? Click Through The Next Document (u0oe1niXR8)
-
What Is a Lambda Expression (and Why C# Feels Incomplete Without It)
medium.com Issue #367
A Lambda Expression is a syntax in C# (and many modern languages) that allows us to write short, readable, function-like expressions.
-
The Power of Immutable Structs and Ref Structs in C#
medium.com Issue #367
A struct in C# is a value type that holds data directly in memory (typically on the stack), unlike reference types like classes, which…
-
Generative AI with Large Language Models in C# in 2026
devblogs.microsoft.com Issue #367
A practical introduction to modern AI for .NET developers. The post Generative AI with Large Language Models in C# in 2026 appeared first on .NET Blog.
-
MCP Development with FireStore .NET, C# and Gemini CLI
medium.com Issue #366
Leveraging Gemini CLI and the underlying Gemini LLM to build Model Context Protocol (MCP) AI applications with C# deployed to Google Cloud…
-
Building a Custom LINQ Provider in .NET
jordansrowles.medium.com Issue #366
LINQ providers are one of those dark corners of .NET that most developers never need to touch. And honestly? That’s probably for the best…
-
SOLID Principles Explained the Way I Wish They Had Been Explained to Me
medium.com Issue #366
SOLID only started to make sense when I saw real code improving. So in this article, I’m not going to explain SOLID traditional.
-
Channels in C#
medium.com Issue #366
Learn how to build high-performance, thread-safe producer-consumer applications using System.Threading.Channels.
-
StructQueue: Lightning-Fast C# Queues: No Copies, No Garbage
medium.com Issue #366
In C#, Queue<T> is the go-to data structure for storing items in a first-in, first-out order. But when we really need ultimate performance…
-
Introduction to Delegates in C#
c-sharpcorner.com Issue #364
Unlock C# delegates: Learn how to declare, use, and master single-cast, multicast, and built-in delegates (Func, Action, Predicate) for flexible code!
-
Type-Safe Collections in C#: How NonEmptyList Eliminates Runtime Exceptions
medium.com Issue #364
Learn how to leverage the type system to guarantee collection safety at compile time. A deep dive into NonEmptyList — a Scala-inspired…
-
Introduction to Pattern Matching in C#
c-sharpcorner.com Issue #364
Unlock the power of C# pattern matching! Learn how to simplify complex logic, improve code readability, and avoid errors with this essential feature. Master modern C#!
-
Strategy vs Factory in C#: The Confusion That Breaks Real Systems
medium.com Issue #364
“Should I use Strategy or Factory?”