languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 25 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 25 of 93
Newest first
-
What is C# Used For in 2026?
c-sharpcorner.com Issue #373
Explore C#'s diverse uses in 2026: web, cloud, enterprise, games, mobile, and more. Discover why C# remains a top choice for developers seeking scalability and security.
-
Understanding C# Events Using a Simple ICU Example
c-sharpcorner.com Issue #373
Learn C# events with a simple ICU room example! Understand event declaration, subscription, and raising. Improve code maintainability and flexibility. Perfect for beginners!
-
New in .NET 10 and C# 14: Enhancements in APIs Request/Response Pipeline
blog.elmah.io Issue #373
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
What Is C#?
c-sharpcorner.com Issue #372
Discover C#, a powerful language by Microsoft for .NET development. Build web, desktop, cloud apps & more! Explore its features, uses, and career scope. Perfect for beginners!
-
Collection Expression Arguments in C# 15+
steven-giesel.com Issue #372
There is a nice proposal which would make collection expressions a bit better - Giving the users the ability to pass in arguments to the creation.
-
Type Casting and Comments in C#
c-sharpcorner.com Issue #372
Master C# type casting (implicit, explicit, Convert, Parse, TryParse) and comments (single-line, multi-line, XML). Write safe, readable, and maintainable code!
-
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 »