C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 37 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 37 of 94
Newest first
-
Add This One Line to Catch Every Unhandled Exception in .NET
medium.com Issue #322
(Because some errors never make it to your logs — until now.) By Mohammad Shoeb · Microsoft Solution Architect
-
The Complete Guide to App Settings in C#: Configuration Files Demystified
medium.com Issue #322
Friend link :- Read full story for free!
-
Sort array elements without using built-in methods
c-sharpcorner.com Issue #322
Learn how to sort array elements in C# without using built-in methods! This tutorial uses Bubble Sort with a practical ASP.NET example for hands-on learning.
-
Optimizing EF Core Performance for High-Traffic Applications
medium.com Issue #322
Most developers learn Entity Framework Core from tutorials that show you how to fetch a few records, add an entity, call SaveChanges()…
-
Invariance, Covariance, and Contravariance in C#
medium.com Issue #322
Are you still struggling to understand covariance and contravariance? There’s a solution! Read this article to the very end, to finally…
-
How LINQ Turns Your C# Code into SQL Queries (With Real Examples)
jaykrishnareddy.medium.com Issue #322
When working with databases in .NET, Language Integrated Query (LINQ) is one of the most elegant features ever introduced. It allows you…
-
Understanding Constructor Overloading in C# WebForms
c-sharpcorner.com Issue #322
Master C# constructor overloading in WebForms! Learn to initialize objects flexibly with different parameters. Real-time examples & practical use cases included.
-
Microservices in .NET: From Theory to Practice
medium.com Issue #322
Have you ever wondered how Netflix handles millions of users simultaneously, or how Amazon manages thousands of orders per second? The…
-
Stop Allocating Arrays — Start Renting Them Like a Pro
medium.com Issue #321
We allocate arrays like it’s free candy. Every new byte[1024] or new char[4096] feels harmless — until your profiler lights up with GC…
-
Understanding CancellationToken in .NET 9.0
c-sharpcorner.com Issue #321
Learn how to use CancellationToken in .NET 9.0 to gracefully stop async tasks, prevent resource waste, and improve application stability. Includes code example!
-
Working with String, StringBuilder, and StringBuffer in C#
c-sharpcorner.com Issue #321
Master C# string manipulation! Compare string, StringBuilder, & StringBuffer (simulated) in ASP.NET WebForms. Boost performance & ensure thread safety. ??
-
Stop Writing Boilerplate: Let These 5 Modern C# Features Do the Work
blog.stackademic.com Issue #321
Less clutter, fewer ifs, cleaner models, and APIs that basically document themselves. These tricks just make C# feel… nicer. Continue reading on Stackademic »
-
15 Essential C# Shorthand Operators Every Developer Should Know in 2025
medium.com Issue #321
Introduction
-
Understanding Inheritance and Polymorphism in C#
c-sharpcorner.com Issue #321
Unlock C#'s power! Explore inheritance and polymorphism with practical ASP.NET WebForms examples. Build reusable, scalable, and maintainable applications. Master OOP!
-
C# Excel to HTML Conversion: A Practical Guide
medium.com Issue #321
This guide walks you through how to convert Excel to HTML and customize the conversion options in C# using a third-party .NET library
-
Factorial Calculator (ASP.NET WebForms Example)
c-sharpcorner.com Issue #321
Build a real-time factorial calculator using ASP.NET WebForms (C#). This tutorial provides a step-by-step guide with code examples for front-end design and back-end logic.
-
List, Dictionary, Queue, and Stack
c-sharpcorner.com Issue #320
Learn C# collections (List, Dictionary, Queue, Stack) with ASP.NET Web Forms! This tutorial provides practical examples and real-time use cases for each collection type.
-
Stop Typing Dummy Data — Automate It with C# Bogus Now!
levelup.gitconnected.com Issue #320
Bogus brings your test data to life. Continue reading on Level Up Coding »
-
LinkedIn: "Are you still using new Random() everywhere?"
steven-giesel.com Issue #320
You need some advice around Random? Sure there is something on LinkedIn for that. Let's have a look.
-
Beyond “Hello World”: .NET Interview Tips for Experienced Developers in 2024
medium.com Issue #320
You’ve been building with .NET for years. You’ve debugged production issues, scaled applications, and maybe even survived a few framework…
-
Span & Memory in C#: Kill Allocations [Guide]
medium.com Issue #320
Master Span and Memory in C# to kill string/array allocations. Benchmarked CSV + varint parsing with zero GC and faster throughput. Continue reading on .Net Code Chronicles »
-
How to Map Objects in .NET in 2026 (AutoMapper vs Mapster vs Manual)
shahedbd.medium.com Issue #320
The Great Mapping Debate: Are You Still Writing Boilerplate in 2026?
-
Parallelism — When Tasks Truly Run at the Same Time
medium.com Issue #320
Concurrency gives your program the illusion of doing many things at once. Parallelism is when that illusion becomes real.
-
Understanding Garbage Collection in C#: How .NET Manages Memory for You
medium.com Issue #320
Memory management is one of the most critical — and complex — aspects of software engineering. In low-level languages like C or C++…
-
Learn Garbage Collection in C#
c-sharpcorner.com Issue #320
Learn how Garbage Collection (GC) works in C# ASP.NET WebForms with a practical example. Prevent memory leaks and optimize your web application's performance.