languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2466 articles Updated Page 31 of 99
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 31 of 99
Newest first
-
Loops in C# – A Complete Guide with break and continue
c-sharpcorner.com Issue #372
Master C# loops! This guide covers for, while, do-while, and foreach loops, plus break and continue statements. Learn to control program flow effectively.
-
Methods in C# – A Complete and Practical Guide
c-sharpcorner.com Issue #372
Master C# methods! This guide covers syntax, parameters, return values, overloading, static/instance methods, ref/out, and best practices for clean, scalable code.
-
Stop Writing Boilerplate: How C# Source Generators Are Saving MVVM
medium.com Issue #371
The “Manual Era” of C# is over. If you are still writing backing fields and PropertyChanged strings, you are paying a tax you no longer…
-
Implementing the Result Pattern in .NET: A Complete Guide
medium.com Issue #371
Implementing the Result Pattern in .NET: A Complete Guide Continue reading on .Net Programming »
-
C# 14 in .NET 10: language features that actually matter in production
medium.com Issue #371
C# 14 is not about syntactic novelty. It is about reducing friction in patterns teams already use: extensions, domain modeling, source…
-
Context Is the Bottleneck in Software Development
codeopinion.com Issue #371
Software development context is the real bottleneck, not writing code. AI can generate code fast, but without context, boundaries, and language, you get coupling and brittle systems. YouTube Check out...
-
Top 10 Errors Found in C# Projects in 2025
isitvritra101.medium.com Issue #370
The “optimization” that was supposed to speed things up? It created heap allocations on every call. Made everything slower.
-
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…