C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 40 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 40 of 94
Newest first
-
C# 14 Changed Reverse on Arrays
medium.com Issue #312
Why x.Reverse() may mutate your array on older .NET-and how to fix it. Continue reading on .Net Programming »
-
Real-Time Applications with SignalR, Angular, and ASP.NET Core
c-sharpcorner.com Issue #312
Build real-time web applications effortlessly using ASP.NET Core, Angular, and SignalR! This tutorial guides you through creating a simple chat application with instant updates. Learn to implement ser...
-
Stop Writing Mediocre C# Code: 10 Habits That Instantly Upgrade You in 2025
blog.stackademic.com Issue #312
Discover the overlooked techniques modern C# developers use to write cleaner, faster, and future-proof code — and how you can adopt them… Continue reading on Stackademic »
-
The Result Pattern in .NET
malshikay.medium.com Issue #312
A Better Way to Handle Success and Failure
-
Getting Started with Scalar API Documentation in ASP.NET Core: A Beginner’s Guide
medium.com Issue #312
If you’re building APIs with ASP.NET Core, you’ve probably heard of Swagger for API documentation. But there’s a modern, beautiful…
-
Cold Starts in Azure Functions and How the Premium Plan Solves Them
c-sharpcorner.com Issue #312
Eliminate Azure Functions cold starts with the Premium plan! This article dives into a real-world healthcare IoT telemetry pipeline scenario where cold starts caused critical alert delays. Learn how p...
-
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
-
Model Context Protocol in .NET
medium.com Issue #311
Let’s have a look that the MCP is and how we can implement it in .NET. Continue reading on Data Science Collective »
-
Automating Chrome Browser with Selenium in C#
c-sharpcorner.com Issue #311
Learn how to automate the Chrome browser using Selenium WebDriver with C# for web testing, scraping, and task automation. This tutorial provides a step-by-step guide, from setting up your C# project i...
-
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...
-
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 »
-
SOLID Principles Cheat Sheet 🚀
c-sharpcorner.com Issue #311
Master the SOLID principles of object-oriented design with this cheat sheet! Learn Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion principles. ...
-
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…
-
Building a Real-Time Day Planner in WPF: From Static Design to Dynamic Data
medium.com Issue #311
Desktop applications don’t have to be sluggish or look dated. Using WPF (Windows Presentation Foundation) and C#, we can build highly…
-
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#.
-
Using Prompt Engineers to Help CROs Fix Hidden Revenue Leaks, Keep Customers, and Drive Expansion
c-sharpcorner.com Issue #311
Uncover hidden revenue leaks with prompt engineering! This article details how to use AI, guided by prompt engineers, to fix stalled pipelines, margin erosion, missed expansion, preventable churn, and...
-
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...
-
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.
-
Learn the Builder Pattern in C#
c-sharpcorner.com Issue #310
This article provides a comprehensive guide, explaining when and how to use this creational design pattern to simplify complex object construction. Explore classic and fluent builder implementations, ...
-
The Ultimate C# Interview Questions Guide: Master the Fundamentals
medium.com Issue #310
Friend link :- Read full story for free!
-
-
Say Goodbye to If-Else Chains with a Rule Engine Approach
medium.com Issue #310
We can make our code more scalable and manageable by using this approach, and eliminate the long chain of if-else conditions