languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 12 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 12 of 93
Newest first
-
You’re Copying Data in C# Without Knowing It (And It’s Costing You 35% Performance)
medium.com Issue #448
(And it’s silently killing your performance)
-
How to Collaborate in C#: Cooperative Programming Techniques for Modern .NET Teams
medium.com 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.com 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…
-
LINQ Looks Clean Until You Care About Performance
medium.com Issue #448
LINQ is great. Until it isn’t.
-
Your Program Is Living a Lie About Memory
medium.com 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.com 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
csharpdigest.net 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.com 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
antondevtips.com 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-sharpcorner.com 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.com Issue #446
When I started working with APIs in .NET, this was one of the most confusing things:
-
C# Dotnet collection internals — List
medium.com Issue #445
Its essentially a dynamic array wrapper implented in managed code.
-
IEnumerable vs IQueryable
rohitsakhare.medium.com Issue #445
The Difference That Decides Where Your Query Runs
-
Extract Word Table Data Using C#
medium.com 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)
developerchandan.medium.com 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.com 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)
news.google.com Issue #445
C# Entity Framework Tutorial | C Sharp Entity Framework Explained | C# Tutorial | Simplilearn (BN2K5qfOQG)
-
C# Dotnet collection internals — Dictionary
medium.com Issue #444
Core Structures — Dictionary< TKey, TValue >
-
#VSCode Newsletter on LinkedIn 📩
youtube.com 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...
-
What is the difference between struct and class in C# with performance comparison?
c-sharpcorner.com Issue #444
Unlock C# performance! Explore struct vs. class differences: memory, speed, and use cases. Optimize your .NET apps with the right choice for efficiency.
-
LINQ GroupBy & IGrouping
medium.com Issue #444
Understanding Grouping as a Domain Modeling Tool — Not Just a Query Operator
-
C# Dotnet collection internals — Queue
medium.com Issue #444
How queues use arrays, circular buffer internally?
-
Record vs Class in C#: When to Use What (With Real Examples & EF Core Guide)
akash-shah.medium.com Issue #444
Learn C# record vs class with examples, immutability, equality, EF Core limitations, and best practices for clean architecture.
-
Serialization vs Deserialization in .NET — Explained Simply
medium.com Issue #443
When I first started working with APIs in .NET, I kept seeing these two terms everywhere: