C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 36 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 36 of 94
Newest first
-
Program to Convert Decimal to Binary in C#
c-sharpcorner.com Issue #325
Learn how to convert decimal numbers to binary in C# using a recursive function within an ASP.NET WebForms application. Includes code and examples! #csharp
-
Why It’s Not C-Hash and Is C-Sharp — An In-Depth Explanation
medium.com Issue #325
Why it’s C #- Hash and the implications. When you first come across C#, the computer programming language, you will probably wonder: Why…
-
C# Logical Programs
c-sharpcorner.com Issue #325
Master C# with these essential logical programs! Learn to reverse strings, remove duplicates, count characters, find the 2nd highest number, check palindromes, & more.
-
10 Essential C# Fixes That Will Make You a Better Programmer
c-sharpcorner.com Issue #325
Elevate your C# programming skills by addressing common pitfalls that lead to inefficient and buggy code. This article highlights 10 essential fixes, including avoiding magic strings, excessive commen...
-
Performance & Observability in ASP.NET Core 2025 With Latest .NET Core Version
c-sharpcorner.com Issue #325
Explore ASP.NET Core 2025's performance & observability features! Discover JIT/AOT compilation, OpenTelemetry, improved logging, and metrics for faster, traceable apps.
-
Roadmap for AI in Visual Studio (November)
devblogs.microsoft.com Issue #325
Today, we’re excited to share our public roadmap, which outlines the next steps in evolving Visual Studio with AI-powered agentic experiences. With every month, we aim to deliver smarter, faster, and ...
-
The History of C#: From Microsoft’s Bet to a Global Programming Powerhouse
medium.com Issue #325
Programming languages come and go, but few have managed to stay relevant across two decades of technological evolution. Among them, C#…
-
Understanding Vibe Coding
c-sharpcorner.com Issue #324
Vibe Coding: AI-powered software development using natural language. Learn how it accelerates prototyping, lowers entry barriers, and enhances learning for developers.
-
Stop Debating It — _ Prefixes Actually Make Your .NET Code Easier To Read
medium.com Issue #324
It's 2025. We've got AI copilots, cloud-native everything, and .NET is faster than ever. And yet… in some corner of code reviews, someone…
-
How To Create Smart Enums in C# With Rich Behavior (.NET 9)
medium.com Issue #324
The Guide I Wish I Had Years Ago
-
Understanding Recursion in C# – Find Sum of N Natural Numbers
c-sharpcorner.com Issue #324
Learn recursion in C# using ASP.NET WebForms! This tutorial explains how to calculate the sum of N natural numbers with a practical, step-by-step example.
-
Your LINQ is Slowing You Down: 5 Fixes Every .NET Developer Should Know
medium.com Issue #324
Five practical changes that eliminate hidden allocations, buffering, and unnecessary work.
-
How I Accidentally Created a Memory Leak That Taught Me C#’s Darkest Secret
medium.com Issue #324
From 150MB to 4GB in 48 hours: The static event subscription that almost killed our Azure API and what it taught me about .NET’s garbage… Continue reading on .Net Programming »
-
C# Value Types vs Reference Types — Differences, Performance, and Memory Usage Explained
medium.com Issue #324
Discover how C# value and reference types work, where they live in memory, their behavior, and impact on performance!
-
Interesting new C# 14 features coming with .NET 10
thomaslevesque.com Issue #323
With the release of .NET 10 just around the corner (next month!), it’s time to take a look at the new features we can expect for C# 14. Note: the goal of this post is not to be an exhaustive list of a...
-
Stop Using Old C#: Unlock the Future with C# 14
medium.com Issue #323
Fresh features, zero hassle
-
.NET 10 Just Turned C# Into a Scripting Powerhouse — And It’s a Game-Changer for Developers
medium.com Issue #323
You might think .NET 10 is just another annual update — but it’s not. This release tears down old boundaries, turning C# into a full-blown…
-
Modern C# Error Handling Patterns You Should Be Using in 2025
medium.com Issue #323
Throwing exceptions and catching them everywhere is easy. Doing error handling well — predictable, testable, and performant — is the hard…
-
From Freezes to Flow: Mastering I/O-Bound Performance in C# .NET Like a Pro
medium.com Issue #323
Go beyond theory — uncover real-world examples, proven async techniques, and performance patterns that turn your sluggish apps into…
-
The Hidden C# Keyword That Replaces Dozens of Nested Ifs
medium.com Issue #322
Most developers overcomplicate decision logic without realizing there’s a simpler way. This guide reveals the underused language feature…
-
Span and Memory in .NET: Writing High Performance Code
medium.com Issue #322
Modern memory efficiency without unsafe code
-
Find duplicate elements in an array using C#
c-sharpcorner.com Issue #322
Learn how to find duplicate elements in a C# array using a practical web form example. This tutorial provides code and a step-by-step explanation. Perfect for beginners!
-
The Most Misunderstood Keyword in C#: readonly
medium.com Issue #322
A single keyword that can save you from invisible state corruption — and even make your code faster
-
IOptions vs IOptionsSnapshot vs IOptionsMonitor: The Ultimate Deep Dive
medium.com Issue #322
Friend link :- Read full story for free!
-
Respect Your Memory: 5 Low-Level Tricks That Separate Average .NET Devs from Experts
blog.stackademic.com Issue #322
The difference between fast code and memory-efficient code is not luck; it is technique. Continue reading on Stackademic »