languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 32 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 32 of 93
Newest first
-
I Stopped Writing Null Checks in C# 14 After Discovering This Operator — Here’s the Full Breakdown
blog.stackademic.com Issue #338
A practical, experience-driven exploration of the ??= operator in .NET 10 — how it cleans up real-world code, eliminates hidden null traps… Continue reading on Stackademic »
-
Can AI Replace a .NET Developer?” — A Real-Life Story From a Noob Who Asked the Same Question
dotnetfullstackdev.medium.com Issue #338
Last year, I was sitting in front of my laptop at 1:30 AM, staring at a 400-line C# file that refused to compile.
-
DSL, Fluent API, Method Chaining & LINQ — The Family Tree Nobody Explained to You
dotnetfullstackdev.medium.com Issue #337
A Noob-Friendly Deep Dive on Relation
-
List vs IList vs IEnumerable: .NET Developer Guide for Collections
medium.com Issue #337
Vertical Slice Architecture: Where Does the Shared Logic Live?
-
Mastering the Strategy Pattern in C#:
dileepsreepathi.medium.com Issue #337
Read this post free at :https://newsletter.dotnetcircuit.com/p/mastering-the-strategy-pattern-in
-
The Most Misunderstood Keywords in C#: out, ref, in, params
medium.com Issue #337
These four keywords have confused more beginners than LINQ, async, and DI combined. The names feel similar. Their use cases look similar…
-
LINQ in C#: How I Teach It to New Developers
medium.com Issue #337
A hands-on guide to learning LINQ the way real C# developers use it every day, with clear sketches, simple examples, and patterns that… Continue reading on Let’s Code Future »
-
Creating a DSL in C#
medium.com Issue #337
Hello everyone! I want to show you how to create your own DSL in C#. I’m planning a series of articles and fully intend to see it through…
-
Null Conditional Assignment in C#
mariemoalla.medium.com Issue #336
You may already know null conditional access (?.), which safely calls members on possibly null objects.
-
Delegates in C# – Explanation & Use Cases
c-sharpcorner.com Issue #336
Master C# delegates! This guide covers definition, purpose, types (single-cast, multi-cast), anonymous methods, lambda expressions, built-in delegates, and use cases.
-
C# 14: User-Defined Compound Assignment Operators
anthonygiretti.com Issue #336
Introduction C# 14 brings an interesting upgrade to operator overloading: custom types can now define...
-
C# LINQ Tricks You Probably Didn’t Know Exist
medium.com Issue #336
(But Microsoft engineers quietly use them everywhere) Continue reading on Towards Dev »
-
Inline Arrays in C# 13: The Secret Performance Feature You’re Probably Ignoring
medium.com Issue #335
A tiny feature with massive impact — allocation-free buffers for real-world .NET performance.
-
Introducing C# 14
devblogs.microsoft.com Issue #335
Learn what features are in C# 14, which ships as part of .NET 10. The post Introducing C# 14 appeared first on .NET Blog.
-
Why Your C# Name Parser Is Wrong — And the 2025 Fix Every Developer Overlooks
blog.stackademic.com Issue #335
A deep dive into cultural naming structures, edge cases, particles, and the robust parsing techniques every senior engineer should know… Continue reading on Stackademic »
-
CurlDotNet: Bringing curl to .NET 10 and C#
medium.com Issue #335
If you’ve ever copied a curl command from API docs only to rewrite it line-by-line in C#, CurlDotNet feels like someone just handed you…
-
Building More Secure C# .NET Applications with HashiCorp Vault
medium.com Issue #335
Have you ever found yourself hardcoding database passwords or API keys directly in your `appsettings.json` file? If you’re nodding your… Continue reading on The Syntax Hub »
-
All you need to know about the C# spread operator
levelup.gitconnected.com Issue #335
A clear guide to using the new C# spread operator Continue reading on Level Up Coding »
-
Difference between IQueryable, IEnumerable, IList, ICollection & IDictionary
medium.com Issue #334
Here’s a detailed comparison of the C# interfaces IQueryable, ICollection, IList, IDictionary, IEnumerable, and IEnumerator, summarizing…
-
Smarter Refactoring in C#: How AI Helps Engineers Build More Scalable Enterprise Applications
medium.com Issue #334
Software teams often focus on using AI to autocomplete code or speed up daily development tasks — but one of the most powerful (and least…
-
.NET 10 Breaking Changes: The New field Keyword
mariemoalla.medium.com Issue #334
Every new .NET release brings performance improvements, but sometimes, it also brings breaking changes that can quietly break your code…
-
.NET: The Ever-Evolving Framework Powering Modern Digital Innovation
medium.com Issue #334
The technology landscape is changing rapidly today, but .NET remains powerful and is considered one of the most reliable, versatile, and…
-
The Business Case for Investing in .NET Training for Teams
medium.com Issue #334
In most companies today, there’s always some big system running in the background — an application that nobody really thinks about until…
-
New Features in .NET 10 and C# 14
trevoirwilliams.com Issue #334
.NET 10 is out, and if you’ve been waiting for a solid Long-Term Support (LTS) release before upgrading your apps, this is the one. Microsoft will support it until late 2028, providing you with ample ...
-
5 .NET Collection Techniques That Stop Slowdowns Before They Start
blog.stackademic.com Issue #334
Low effort tweaks that remove allocations, locks, and pointless overhead Continue reading on Stackademic »