C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 54 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 54 of 94
Newest first
-
LINQ : Advanced Techniques Every .NET Developer Should Master in 2025
medium.com Issue #261
Write LINQ that reads like C# and runs like SQL—clean and fast.
-
Dynamic Service Registration in .NET: A Clean Approach to Dependency Injection
medium.com Issue #261
Dependency Injection (DI) is a fundamental part of modern .NET applications, but manually registering dozens or hundreds of services can…
-
Multithreading in C# .NET Core: A Real-World Guide (With Code, Mistakes, and Clarity)
medium.com Issue #261
“Why is my app freezing?” “Why is this taking so long to load?” “My API works fine — until multiple users hit it at once…” Continue reading on CodeToDeploy »
-
Data Formats in .NET: What They Are and How They Look
medium.com Issue #261
When I started my first job as a junior developer, one of the first things I saw in the backend codebase was something like this:
-
Why .NET Full Stack Developers Are the Backbone of Enterprise Digital Transformation in 2025
medium.com Issue #261
As businesses accelerate toward digital-first strategies in 2025, the demand for skilled professionals who can architect, build, and scale…
-
Trigger, Render, Deliver: Email Templates Made Easy with DotLiquid & EasyLaunchpad
bizsoltech.medium.com Issue #261
Email is one of the most vital — yet frustrating — parts of any SaaS product. Whether it’s sending a password reset, welcome message, or…
-
Top 10 .NET Development Companies of 2025: How to Choose the Right Partner
belitsoft.com Issue #261
When you’re looking to hire a trusted .NET development partner, the “top 10” label usually indicates companies with deep expertise in…
-
Asynchronous Programming in C# — Comparing it with multi threading
ravindradevrani.medium.com Issue #261
Asynchronous task is a non-blocking task. Main thread goes back to the thread pool (and free to do other tasks) when it reaches to await –…
-
5 Modern C# Features That Will Make Your Code Feel Like Magic
blog.stackademic.com Issue #261
The language evolved. Your code should, too. Continue reading on Stackademic »
-
How is .Net platform independent?
dharinibalasubramaniam.medium.com Issue #261
Understanding the Cross-Platform Nature of .NET with Real-World Analogies
-
Understanding MVC in .NET
medium.com Issue #261
I recently started working with ASP.NET and I kept hearing about “MVC” — the Model-View-Controller pattern. Everyone around me swore by it…
-
474: Apple Intelligence for C# and .NET
mergeconflict.fm Issue #260
Frank brings apple intelligence APIs to C#! We discuss! https://github.com/praeclarum/CrossIntelligence/ Follow Us Frank: Twitter, Blog, GitHub James: Twitter, Blog, GitHub Merge Conflict: Twitter, Fa...
-
What are indexers in C#?
c-sharpcorner.com Issue #260
Exploring indexers in C# is a powerful feature that lets objects behave like arrays. We'll explain the basics in simple language, compare them to properties, cover multiple examples including overload...
-
How does C# differ from C or .NET?
c-sharpcorner.com Issue #260
A clear and concise guide explaining how C#, C, and .NET differ — covering their roles, syntax, usage, and ecosystem. Perfect for beginners and professionals looking to understand where each technolog...
-
Top 30 Tricky C# Coding Interview Questions
medium.com Issue #260
(With Answers)
-
Your First C# Program: Writing Hello World
medium.com Issue #260
Writing your first program is an exciting milestone in any programming journey. In this guide, we’ll walk through creating the classic…
-
Do You Need Coding Skills to Use Langflow?
c-sharpcorner.com Issue #260
Wondering if you need to know programming to use Langflow? Discover how Langflow enables no-code and low-code AI app development with drag-and-drop simplicity.
-
5 .NET Tips That Quietly Separate Experts From Everyone Else
blog.stackademic.com Issue #260
Master these, and your code will start feeling as fast and clean as it looks. Continue reading on Stackademic »
-
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