languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 37 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 37 of 93
Newest first
-
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.
-
Working with Strings and StringBuilder in C#
c-sharpcorner.com Issue #320
Unlock C# string manipulation secrets! Learn when to use String vs. StringBuilder for optimal performance in ASP.NET WebForms. Boost efficiency now!
-
Understanding HashSet in C#: Internal Working, Advanced Concepts & Performance Insights
medium.com Issue #319
If you’ve worked with collections in C#, you’ve likely used List<T>, Dictionary<TKey, TValue>, or HashSet<T> — but do you really know how…
-
Asynchronous Programming in C#: async and await
c-sharpcorner.com Issue #319
Unlock ASP.NET WebForms performance with async/await! Prevent page freezes during long operations like API calls. See a practical example & real-world use cases.
-
Stop Overusing LINQ — This Pattern Is Faster
medium.com Issue #319
(Because beauty has a cost in hot paths.)
-
Mastering the Magic of C#: From Basics to Brilliance
c-sharpcorner.com Issue #319
Unlock the power of C#! This guide covers everything from basic syntax to advanced features like OOP, async programming, and pattern matching. Build web, mobile, and AI apps!
-
dotnet run App.cs: why .NET 10’s file-based apps unlock a new wave of use cases
blog.devgenius.io Issue #319
.NET 10 lets you run a single C# file directly — dotnet run App.cs — with no .csproj required. You can pull NuGet packages inline, switch… Continue reading on Dev Genius »
-
API Key Auth in .NET 9 (Clean Architecture, Minimal APIs) — A No-Drama, Copy-Paste Guide
medium.com Issue #319
If you want the full source code, join our community: Here
-
Understanding base() vs this() in C# Constructors — A Deep Dive
medium.com Issue #319
“Constructors build the foundation of your class hierarchy — understanding how base() and this() work gives you full control over object…
-
Mastering Facet: A guide to Type-Safe Projections in C#
medium.com Issue #319
In this post, I want to highlight Facet’s features and demonstrate how to use them with concrete examples. From generating your DTO’s and…
-
What Are Events in .NET Framework?
c-sharpcorner.com Issue #319
Unlock the power of .NET events! Learn how publishers and subscribers communicate using delegates, creating responsive and decoupled applications. Master event handling in C#.
-
Akka.NET + Kubernetes: Everything You Need to Know
petabridge.com Issue #319
Production lessons from years of running Akka.NET clusters at scale
-
Spans Got Easier in C# 14
singhsukhpinder.medium.com Issue #318
How C# 14 turns Span<T> patterns into mainstream practice