languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 46 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 46 of 93
Newest first
-
C#: The Versatile Language for Modern Development
c-sharpcorner.com Issue #289
This article covers its key features, setup, applications (web, desktop, mobile, games, cloud, IoT), advantages, limitations, and real-world usage. Discover why C# is a top choice for modern software ...
-
Parallelism in C#: Task, Thread, or Dataflow?
medium.com Issue #289
When to Use Threads — Task, Thread, or Dataflow?
-
C# Performance Hack: Use record struct for Small, Immutable Models
c-sharpcorner.com Issue #289
This optimization avoids heap allocation and provides value-based equality, unlike classes. See how record struct dramatically improves efficiency when comparing immutable objects, offering a signific...
-
C# 14 Is Here: New Features, Hidden Details, and What You Need to Know
medium.com Issue #289
With the arrival of .NET 10 RC1, we also get our hands on C# 14, the latest evolution of Microsoft’s language.
-
.NET vs. .NET Core in 2025: A Developer’s Guide to What Matters
medium.com Issue #288
It’s September 2025, and if you’re a developer in the C# ecosystem, the old ‘.NET Core vs. .NET Framework’ debate feels like a relic from…
-
Top 5 Attributes in C# You’ll Actually Use (Deeper Dive)
medium.com Issue #288
When I was one year into C#, attributes looked like colorful stickers people pasted above classes and methods. But they’re actually…
-
.NET AI Community Standup - Getting to Know LLM Tornado
youtube.com Issue #288
C# 13 Speed Plays: Span, Pipelines, Zero-GC
-
Full Stack .NET + Angular Interview Mastery Guide — 2025 Edition
blog.yaseerarafat.com Issue #287
Landing a developer job in 2025 isn’t about memorizing syntax anymore. Interviewers want engineers who can design scalable systems, code…
-
From Zero to Hero in .NET Core: A Beginner’s Step-by-Step Guide
medium.com Issue #287
How Async/Await Really Works in C# : A Beginner-Friendly Guide
-
Top 12 Essential C# Code Snippets for ASP.NET and .NET Developers (Ultimate Guide
shahedbd.medium.com Issue #287
Reusable code snippets are the backbone of efficient programming. For ASP.NET, .NET, and C# developers, having a toolkit of time-saving…
-
2 months of lazy debugging JsonSerializationException and finally it was equality comparison
medium.com Issue #287
I’ll be honest: I lost two months to this.
-
Modern C# Span Magic: High-Perf APIs Without GC Spikes
medium.com Issue #287
Practical patterns with Span<T>/ReadOnlySpan<T> to kill allocations, tame the GC, and keep your APIs fast under load.
-
5 Async C# Tricks That Separate Juniors from Seniors
blog.stackademic.com Issue #287
Master these battle-tested patterns and never write sluggish awaits again. Ignore them, and you’re leaving performance and responsiveness… Continue reading on Stackademic »
-
How Do You Optimize Performance with LINQ Tricks?
medium.com Issue #286
LINQ (Language-Integrated Query) is one of the most powerful features in .NET.
-
Mastering C# Encapsulation: A Complete Guide for Beginners
medium.com Issue #286
When learning Object-Oriented Programming (OOP), one of the most important concepts is Encapsulation. It is the foundation of secure…
-
Why var isn’t Always Your Best Friend in C#
medium.com Issue #286
When I had just about a year of experience in IT, I thought using var everywhere made me look like a “pro” developer. It felt cool, short…
-
-
Plug into C# Interfaces: Understanding Contracts and Multiple Implementations with EV Chargers
dotnetfullstackdev.medium.com Issue #286
Let’s make interfaces the protagonist. We’ll build a real-world, non-boring setting: an EV-charging network with different charger vendors…
-
Async Task v/s Async void in C#: What’s the Difference and Why It Matters?
medium.com Issue #286
When working with asynchronous programming in C#, one of the most common confusions is when to use async Task and when to use async void…
-
Why default in C# is Smarter Than You Think
medium.com Issue #286
When I was about a year into coding, I saw default in C# for the first time and thought, “Oh, it just sets things to zero or null. Nothing…
-
C# Lambdas Part 3, Setting Parameters Up Front, and Mismatching Func and Action Definitions
nodogmablog.bryanhogan.net Issue #286
Over the years, I’ve written a few posts about Actions, Funcs, and how they work with lambdas. Simple Action and Action
-
Use Record Types for DTOs in C#
medium.com Issue #285
In modern C# development, Data Transfer Objects (DTOs) are everywhere — transporting data between APIs, services, and databases.
-
String Interpolation vs Concatenation in C#: The Cleaner Way to Write Strings
medium.com Issue #285
When I was about a year into coding, I still glued strings together with + signs like Lego blocks. It worked fine — until my code started…
-
All You Need to Know About .NET’s Cancellation Token
medium.com Issue #284
A comprehensive guide to understanding and implementing cancellation tokens in modern programming
-
5 .NET Features You’ll Wish You Knew Sooner
blog.stackademic.com Issue #284
Cleaner patterns, safer objects, and less boilerplate all hiding in plain sight. Continue reading on Stackademic »