languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2466 articles Updated Page 60 of 99
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 60 of 99
Newest first
-
Span Isn’t Just a Buzzword — It’s How Microsoft Cuts Allocations in .NET 8+
blog.devgenius.io Issue #260
💡 Sick of shallow Span<T> blogs slicing strings and calling it performance? This is the real deal — practical, production-grade usage… Continue reading on Dev Genius »
-
Belitsoft on ZLinq: Modern LINQ Performance for Legacy .NET Apps
belitsoft.com Issue #260
Eliminate heap allocations while keeping LINQ’s syntax — ideal for high-frequency trading, real-time analytics, and legacy .NET upgrades.
-
Memory-Efficient String Handling in .NET: StringBuilder vs Concatenation
malshikay.medium.com Issue #260
Efficient string handling in C#
-
Mastering Cancellation Tokens in .NET
blog.stackademic.com Issue #260
Why your async code needs cancellation and how to get it right from the start. Continue reading on Stackademic »
-
What are delegates and multicast delegates in C#
c-sharpcorner.com Issue #259
Learn what delegates and multicast delegates are in C# with clear explanations, code examples, and use cases. This article explores how delegates enable flexible, type-safe method referencing and how ...
-
15 Critical LINQ Mistakes Every .NET Developer Must Avoid
medium.com Issue #259
Master these common LINQ pitfalls to write more efficient, maintainable, and bug-free code.
-
Mastering String Manipulation in .NET — Everything You Need to Know
medium.com Issue #259
From performance to localization, from regex to raw string literals — a complete guide for .NET developers
-
Building High-Performance .NET Apps With C# Channels
antondevtips.com Issue #259
Building reliable, scalable, and high-performance .NET applications often comes down to how you handle concurrency and data processing… Continue reading on CodeX »
-
Roslyn Source Generators in C#
medium.com Issue #259
When Your Code Writes Itself Continue reading on Indian Full Stack Developer Community »
-
Stop Looping: Use Dictionary for Fast Entity Access in .NET
mariemoalla.medium.com Issue #259
In many .NET applications, you manage collections of entities, like users, orders, or products, and frequently need to look up items by…
-
C# Syntax: A Beginner’s Guide to the Basics
medium.com Issue #259
C# (pronounced “C sharp”) is a powerful, versatile programming language developed by Microsoft. If you’re just starting your journey with…
-
Supercharged Performance with SQL Partitioning & C#: One Strategy, Multiple Tables
dotnetfullstackdev.medium.com Issue #258
Scenario:
-
-
You’re Using C# Enums Wrong — Here Are 12 Features That Change Everything
medium.com Issue #258
From flag combinations to custom parsing, these lesser-known techniques let you write smarter, faster, and safer C# code — without… Continue reading on Stackademic »
-
These 5 .NET Code Hacks Changed How I Write Software
blog.stackademic.com Issue #258
Stop writing code like it’s 2015; these tips are how modern .NET gets done. Continue reading on Stackademic »
-
Classes vs Structs: The Definitive Playbook for Writing Better C#
blog.stackademic.com Issue #258
Understand how classes and structs work under the hood, and how senior developers make the call. Continue reading on Stackademic »
-
Difference Between var, dynamic, and object in C#
c-sharpcorner.com Issue #258
Learn the exact differences between var, dynamic, and object in C#. This in-depth guide covers syntax, performance, use cases, and practical code examples for each.
-
Dependency Injection in .NET Core Using IServiceCollection
c-sharpcorner.com Issue #257
Dependency Injection (DI) is a design pattern that enables the development of loosely coupled code. .NET Core has built-in support for DI, making it easy to manage dependencies in modern applications.
-
Mastering in C# .NET
c-sharpcorner.com Issue #257
The article is about to explain C# .NET fundamentals and syntax that is required for basic and advanced software development.
-
Understanding Sealed Classes in C# with Example
c-sharpcorner.com Issue #257
In C#, a sealed class prevents inheritance, ensuring its behavior can't be altered through subclassing. It enhances security, enforces design rules, and can improve performance in certain scenarios.
-
Source Generators in Jinget
jinget.medium.com Issue #257
.NET Source Generators are a powerful feature introduced in .NET 5 that enable compile-time code generation, allowing developers to…
-
Have You Heard About Refit? A Type-Safe REST Client for C#
medium.com Issue #257
If you’re tired of writing repetitive HttpClient code in .NET just to call APIs, then you should take a look at Refit.
-
Starting from Zero: My First Steps into C#
medium.com Issue #257
I just started learning C#. I’m not an expert. Not even close. But this is me documenting the process — the wins, the bugs, the…
-
What is C# and What is it Used For?
c-sharpcorner.com Issue #257
Learn what C# is, how it works, and what it's used for in 2025. Explore its core features, real-world applications, and why C# remains a top programming language for developers.
-
Why Everyone’s Wrong About “Serverless Can’t Handle Heavy AI” in .NET
medium.com Issue #257
Think Lambda can’t handle real AI? These controversial .NET 9 + AWS hacks crushed cold starts, killed GPU bills, and shocked our SRE team… Continue reading on .Net Programming »