C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 46 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 46 of 94
Newest first
-
The Ultimate Beginner’s Guide to 6 Hidden C# Features
medium.com Issue #292
Boost your skills with these under-the-radar tools and examples. Continue reading on Towards Dev »
-
-
How to Secure Your C# Applications: Best Practices & Code Examples
blog.stackademic.com Issue #292
Why Security Should Be Your Top Priority Continue reading on Stackademic »
-
What’s New in C# 13 — A Deep Dive into the Latest Features
medium.com Issue #291
C# 13, released as part of .NET 9, introduces a set of practical yet powerful enhancements that make coding cleaner and more flexible.
-
Building Microservices with C# and .NET Core
medium.com Issue #291
How I architected, developed, and deployed microservices using C# and .NET Core in real-world projects. Continue reading on .Net Programming »
-
Why C# and .NET are the Programmer’s Best Friends in Today’s World
medium.com Issue #291
In this post, we’d like to expand on why C# and .NET should be in the forefront of your development toolkit
-
Singleton in C#: The One Class to Rule Them All
medium.com Issue #291
Have you ever heard the phrase:
-
Access Modifiers in C#
c-sharpcorner.com Issue #291
Master C# access modifiers (public, private, protected, internal, protected internal, private protected) to control code visibility and build robust, maintainable applications. Learn how to encapsulat...
-
Using CancellationToken in .NET: Graceful Shutdowns Explained
medium.com Issue #291
Introduction: The Importance of Graceful Shutdowns in .NET
-
Mistakes Senior C# Developers Make — Hard-Won Lessons
medium.com Issue #291
Senior C# Slip-Ups: Hard-Won Lessons From Ten Years in .NET — Avoid deadlocks, N+1 traps, and memory leaks with Monday-ready refactors. Continue reading on Inside the IF »
-
Observable Lists in C# and Unity — Built-in vs Custom
medium.com Issue #290
When working in Unity or C#, you’ve probably used List<T> a million times. It’s simple, fast, and gets the job done. But there’s one…
-
[.NET]: Let’s Create a CLI with System.CommandLine
medium.com Issue #290
Today I will be showing you how I have built a CLI task tracker using console applications in .NET.
-
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 »