languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2552 articles Updated Page 21 of 103
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 21 of 103
Newest first
-
Kafka Consumer Group Pattern in .NET: A Simple Guide with a Real-World Example
Medium Issue #449
When building applications with Apache Kafka, one of the most powerful patterns is the Consumer Group Pattern.
-
Dependency Injection in C# — Complete Guide with Real Examples (Constructor + Setter + Method)
Medium Issue #449
If you’re building scalable .NET applications, Dependency Injection (DI) is not optional — it’s foundational.
-
.NET Threads, Tasks & async/await — What Actually Happens Under the Hood
Medium Issue #449
Most developers use async/await daily.
-
A Semantic Kernel Alternative for .NET — When and Why You’d Reach for One
Medium Issue #448
If you’re building an AI feature in .NET in 2026, the first framework you hear about is Microsoft Semantic Kernel. It’s well-funded…
-
Common Async/Await Bug in C# (That Only Shows Up in Production)
Medium Issue #448
The Async/Await Bug That Took Down Our API (And Why Local Tests Didn’t Catch It)
-
You’re Copying Data in C# Without Knowing It (And It’s Costing You 35% Performance)
Medium Issue #448
(And it’s silently killing your performance)
-
How to Collaborate in C#: Cooperative Programming Techniques for Modern .NET Teams
Medium Issue #448
If you’re working in any sizable .NET project, you’ve probably heard someone ask, “How do we collaborate?” — as in, how do we coordinate…
-
Getters in C#: The Essential Guide for Modern .NET Developers
Medium Issue #448
If you’ve been searching for clear answers on property getters in C# and .NET, you’re not alone. Maybe you’re looking for a deep dive into…
-
-
Your Program Is Living a Lie About Memory
Medium Issue #448
Everything you think you know about how your process uses RAM is mediated by a beautifully crafted illusion — Virtual Memory.
-
I Rebuilt nanoGPT in C# So .NET Developers Can Understand LLMs
Medium Issue #447
This article looks at the nanoGPT repo and follows on my previous article, how to build an LLM in C# by using TorchSharp to build a GPT. Continue reading on Data Science Collective »
-
How I accidentally made the fastest C# CSV parser
C# Digest Issue #447
a fast CSV parser can locate field boundaries in one pass
-
Value Types vs Reference Types in C#: What Finally Made It Click
Medium Issue #447
I had used value types and reference types for a long time, but I didn’t really understand what the difference actually meant in real code.
-
Building File-Based Apps in .NET: A Complete Guide With Multi-File Support
Dev Tips Issue #446
Learn how to build file-based apps in .NET 10 and .NET 11 Preview 3. This guide covers single-file C# scripts, multi-file apps with the #:include directive, including SDK, including project files and
-
Difference Between ref and out Parameters in C# with Examples?
C# Corner Issue #446
Unlock the power of ref and out parameters in C#! Master passing arguments by reference, modifying existing values with ref, and returning multiple values with out. Enhance your C# coding skills!
-
String vs JSON vs Object in .NET — Why Beginners Get Confused
Medium Issue #446
When I started working with APIs in .NET, this was one of the most confusing things:
-
C# Dotnet collection internals — List
Medium Issue #445
Its essentially a dynamic array wrapper implented in managed code.
-
-
Extract Word Table Data Using C#
Medium Issue #445
In daily office operations and software devlopment, developers often need to extract table data from Word documents for database imports…
-
30 .NET Interview Questions Every Developer Should Know (2 Years Exp)
Medium Issue #445
Preparing for a mid-level .NET interview? Here are 30 must-know questions on C#, async/await, EF Core, DI, and memory management — with…
-
Mastering LINQ in .NET: A Practical Guide for Backend Developers
Medium Issue #445
If you’re working with C# and .NET, LINQ (Language Integrated Query) is one of the most powerful tools in your toolkit. It allows you to…
-
C# Entity Framework Tutorial | C Sharp Entity Framework Explained | C# Tutorial | Simplilearn (BN2K5qfOQG)
""charp" OR "asp.net" OR "fsharp" OR "c#" OR "vb.net" " - Google News Issue #445
C# Entity Framework Tutorial | C Sharp Entity Framework Explained | C# Tutorial | Simplilearn (BN2K5qfOQG)
-
C# Dotnet collection internals — Dictionary
Medium Issue #444
Core Structures — Dictionary< TKey, TValue >
-
#VSCode Newsletter on LinkedIn 📩
YouTube Issue #444
DateTime vs DateTimeOffset in C#: What you get wrong until you don’t
-
Microsoft .NET Code Analysis: Avoid Out Parameters in Methods
dotNetTips.com Issue #444
The excerpt emphasizes the importance of clarity and maintainability in designing APIs and methods in Microsoft .NET. It explains that while out parameters can be useful, they often lead to reduced re...