C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 32 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 32 of 94
Newest first
-
Fetching GitHub content from C#
blog.elmah.io Issue #341
One of the many advantages of storing project assets on GitHub is that you can access them both manually and programmatically from anywhere. At elmah.io, we are using this for documentation, code snip...
-
Common LINQ Methods with Examples in .NET Core
medium.com Issue #340
Here’s a comprehensive list of LINQ (Language Integrated Query) extension methods available in .NET Core. These methods are part of the…
-
Let’s take a look at the new page — Handling and Throwing Exceptions in .NET:
peter-jackson.medium.com Issue #340
https://www.devart.com/dotconnect/dotnet-exceptions.html
-
How to Safely Concatenate Strings in C#
medium.com Issue #340
String concatenation is a common task in almost every C# application from building user messages to constructing dynamic SQL queries or…
-
The Hidden Bugs Behind async/await That No One Warns You About
medium.com Issue #339
Async/await looks innocent… until it silently destroys your application. Let’s talk about the stuff juniors are never told — the async…
-
Mastering Loops in C#: A Complete Guide With Best Practices, Mistakes, and When to Use What
c-sharpcorner.com Issue #339
Master C# loops! This guide covers for, while, foreach, parallel loops, and LINQ. Learn best practices, common mistakes, and performance tips for efficient code.
-
What is a Constructor?
c-sharpcorner.com Issue #339
Unlock the power of constructors in programming! Learn what they are, how they work, and their different types (default, parameterized, DI) with C# examples. Master object initialization!
-
The New C# 14 Extension Members Hack You Must Try
medium.com Issue #339
A practical guide to the new C# 14 extension members with examples, diagrams, and clean patterns you’ll actually use.
-
Interface vs Abstract Class in C#: Real-World and Programming Examples Explained in Simple Language
c-sharpcorner.com Issue #339
Unlock the power of C#! Explore interfaces vs. abstract classes with real-world and programming examples. Learn when to use each for optimal design and code reuse.
-
Convert HTML to RTF (Rich Text) Using C#
medium.com Issue #339
This guide details how to implement the HTML to RTF conversion efficiently using C# and the free .NET library.
-
Understanding Inheritance in C# with Practical Examples
c-sharpcorner.com Issue #338
Master C# inheritance! Learn about base/derived classes, single/multi-level/hierarchical inheritance, method overriding, 'base' keyword, and preventing inheritance.
-
Senior C# Dev Reacts to Reddit’s C# Community (Hot Takes Only)
levelup.gitconnected.com Issue #338
#2. — Best approach for background or async tasks Continue reading on Level Up Coding »
-
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.