.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 25 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 25 of 57
Newest first
-
Optimize Your .NET App for Production — Complete Checklist (Part 1)
abp.io Issue #312
Optimize any .NET app for production with a practical checklist. In this list, you’ll find releasing, publishing, trimming, kestrel & GC… Continue reading on abp-community »
-
.NET a Memory Hog and My Journey to Nim
medium.com Issue #312
40MB RAM for a “Hello World”” server is pretty hefty right?
-
Single Threading — The Foundation of All Execution
medium.com Issue #312
Before your code can think about concurrency, async, or parallelism, it has to do one thing really well: Run in a straight line.
-
Dew Drop – October 20, 2025 (#4522)
alvinashcraft.com Issue #312
Top Links Microsoft brings Windows’ ‘AI actions’ to third-party apps (Mark Hachman) A Developer’s Guide to Fine-Tuning GPT-4o for Image Classification on Azure AI Foundry (Alexandre Levret) Share Copi...
-
The Truth About .NET Serialization Nobody Told You
medium.com Issue #312
“Serialization is where 80% of your latency hides. Let’s expose it.” By Mohammad Shoeb
-
Unlocking Runtime Intelligence: A Formal Exploration of Reflection in .NET
c-sharpcorner.com Issue #311
Unlock the power of runtime intelligence with .NET Reflection! This article explores how to inspect and manipulate .NET code at runtime, covering key components like Assembly and Type inspection, dyna...
-
Memory Leak Hunting in .NET Core: Lessons from Production Troubleshooting
medium.com Issue #311
This article explores the process of uncovering a mysterious memory leak in a .NET Web API project. Continue reading on MoneyPay »
-
The 7 Sneaky EF Core Change Tracking Bugs That Silently Destroyed My Data (Until I Cracked the Fix)
blog.stackademic.com Issue #311
Discover how invisible tracking issues can overwrite your entities, break relationships, and cause ‘random’ bugs — and learn the exact… Continue reading on Stackademic »
-
C# 14’s New Performance-Enhancing Feature: Compound Assignment Operators
gunesramazan.medium.com Issue #311
C# keeps giving developers a little more flexibility with every release. With .NET 10, C# 14 introduces a feature that looks small at…
-
Mastering the C# Dispose Pattern
blog.ivankahl.com Issue #311
Mastering C# IDisposable is crucial for reliable resource management. Learn how to deterministically clean up unmanaged resources in C#.
-
Boost Developer Productivity with Copilot Profiler in Visual Studio
c-sharpcorner.com Issue #311
Discover how the Copilot Profiler Agent in Visual Studio transforms .NET debugging and performance tuning with AI-powered insights, real-time suggestions, and benchmark validation—making optimization ...
-
-
When LINQ becomes a mess | Clean EF Core queries
medium.com Issue #311
Sometimes it’s really hard to follow the logic in LINQ — especially if the query is a giant one. And if you’re wondering how to make it…
-
Filtering Rows in a DataTable using DataView in C#
c-sharpcorner.com Issue #311
Learn how to efficiently filter rows in a C# DataTable using DataView. This method allows dynamic data filtering without altering the original DataTable. Discover how to create DataViews, apply RowFil...
-
⚙️ That One Azure Setting That Doubled Our Reliability
aws.plainenglish.io Issue #311
We didn’t rewrite our code. We didn’t scale out. We just added one setting — and our cloud app stopped failing randomly. Continue reading on AWS in Plain English »
-
Write Code Like a Pro: 15 LINQ Tricks That Eliminate Complex Loops Forever
medium.com Issue #311
Discover powerful LINQ patterns used by senior developers to write elegant, high-performance C# code that recruiters and teammates love.
-
What’s New in Visual Studio 2026 Insiders: Faster, Smarter, and More Modern
c-sharpcorner.com Issue #311
Visual Studio 2026 Insiders delivers blazing-fast performance, AI-powered coding with GitHub Copilot, and a modern UI. Boost your .NET & C++ development!
-
Distributed Tracing: The Detective for Your Production Bugs
medium.com Issue #310
Stop searching blindly through logs and learn to see the complete story of a request across your microservices.
-
Redis Cache vs Memory Cache vs SQL Cache in .NET — A Complete Developer Guide
medium.com Issue #310
🧩 Introduction
-
C# LINQ Performance in .NET: Optimize Queries & Avoid Hidden CPU/Memory Traps
blog.yaseerarafat.com Issue #310
There’s a reason LINQ became every .NET developer’s favorite tool. It reads like poetry — expressive, declarative, deceptively elegant…
-
How .NET Garbage Collector works (and when you should care)
blog.elmah.io Issue #310
In the world of .NET, memory management is an important aspect of any application. Fortunately, you don't have to shoulder this immense task yourself. .NET handles it with the superpower of the Garbag...
-
-
🧠 GC.Collect() vs GC.SuppressFinalize() in .NET — Deep Dive (with Real-World Examples)
c-sharpcorner.com Issue #309
Unlock .NET memory management secrets! This deep dive explores GC.Collect() and GC.SuppressFinalize(), revealing when and how to use them effectively. Learn the nuances of garbage collection in .NET 8...
-
Mastering TextWriter in C#: A Complete Guide for Developers
medium.com Issue #309
In modern software development, working with files and text data is a common requirement.
-
Understanding Searching Algorithms: Linear Search and Binary Search
c-sharpcorner.com Issue #309
Explore the fundamentals of searching algorithms with Linear and Binary Search. Learn how these algorithms efficiently locate elements within data structures. Discover their step-by-step logic, Python...