languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2466 articles Updated Page 38 of 99
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 38 of 99
Newest first
-
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 »
-
Mastering Asynchronous Methods in C# for Faster Applications
medium.com Issue #334
In today’s fast-paced digital world, applications are expected to run smoothly, respond quickly, and handle multiple tasks efficiently…
-
5 Underrated C# Moves That Make You Wonder Why You Ever Wrote Code the Old Way
medium.com Issue #333
Practical language tools that remove boilerplate, reduce bugs, and make your intent obvious. Continue reading on Stackademic »
-
C# 14: Introducing partial constructors and partial events
anthonygiretti.com Issue #333
Introduction C# 14 introduces a subtle but genuinely useful improvement for developers working with large...
-
C# 14 and .NET 10: The Most Developer-Friendly Release in Year
tohidhaghighi.medium.com Issue #333
Microsoft’s November 2025 release brings two big updates to the .NET ecosystem: C# 14 and .NET 10. Together, they mark one of the most…
-
How String in C# Supports Reliable Data Consistency in Daily Operations
medium.com Issue #333
Introduction
-
C# 14: Introducing Null-Conditional Assignment
anthonygiretti.com Issue #333
Introduction Every new C# release brings its share of improvements to how we write safer...