C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 55 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 55 of 94
Newest first
-
Building High-Performance .NET Apps With C# Channels
antondevtips.com Issue #259
Building reliable, scalable, and high-performance .NET applications often comes down to how you handle concurrency and data processing… Continue reading on CodeX »
-
Roslyn Source Generators in C#
medium.com Issue #259
When Your Code Writes Itself Continue reading on Indian Full Stack Developer Community »
-
Stop Looping: Use Dictionary for Fast Entity Access in .NET
mariemoalla.medium.com Issue #259
In many .NET applications, you manage collections of entities, like users, orders, or products, and frequently need to look up items by…
-
C# Syntax: A Beginner’s Guide to the Basics
medium.com Issue #259
C# (pronounced “C sharp”) is a powerful, versatile programming language developed by Microsoft. If you’re just starting your journey with…
-
Supercharged Performance with SQL Partitioning & C#: One Strategy, Multiple Tables
dotnetfullstackdev.medium.com Issue #258
Scenario:
-
-
You’re Using C# Enums Wrong — Here Are 12 Features That Change Everything
medium.com Issue #258
From flag combinations to custom parsing, these lesser-known techniques let you write smarter, faster, and safer C# code — without… Continue reading on Stackademic »
-
These 5 .NET Code Hacks Changed How I Write Software
blog.stackademic.com Issue #258
Stop writing code like it’s 2015; these tips are how modern .NET gets done. Continue reading on Stackademic »
-
Classes vs Structs: The Definitive Playbook for Writing Better C#
blog.stackademic.com Issue #258
Understand how classes and structs work under the hood, and how senior developers make the call. Continue reading on Stackademic »
-
Difference Between var, dynamic, and object in C#
c-sharpcorner.com Issue #258
Learn the exact differences between var, dynamic, and object in C#. This in-depth guide covers syntax, performance, use cases, and practical code examples for each.
-
Dependency Injection in .NET Core Using IServiceCollection
c-sharpcorner.com Issue #257
Dependency Injection (DI) is a design pattern that enables the development of loosely coupled code. .NET Core has built-in support for DI, making it easy to manage dependencies in modern applications.
-
Mastering in C# .NET
c-sharpcorner.com Issue #257
The article is about to explain C# .NET fundamentals and syntax that is required for basic and advanced software development.
-
Understanding Sealed Classes in C# with Example
c-sharpcorner.com Issue #257
In C#, a sealed class prevents inheritance, ensuring its behavior can't be altered through subclassing. It enhances security, enforces design rules, and can improve performance in certain scenarios.
-
Source Generators in Jinget
jinget.medium.com Issue #257
.NET Source Generators are a powerful feature introduced in .NET 5 that enable compile-time code generation, allowing developers to…
-
Have You Heard About Refit? A Type-Safe REST Client for C#
medium.com Issue #257
If you’re tired of writing repetitive HttpClient code in .NET just to call APIs, then you should take a look at Refit.
-
Starting from Zero: My First Steps into C#
medium.com Issue #257
I just started learning C#. I’m not an expert. Not even close. But this is me documenting the process — the wins, the bugs, the…
-
What is C# and What is it Used For?
c-sharpcorner.com Issue #257
Learn what C# is, how it works, and what it's used for in 2025. Explore its core features, real-world applications, and why C# remains a top programming language for developers.
-
Why Everyone’s Wrong About “Serverless Can’t Handle Heavy AI” in .NET
medium.com Issue #257
Think Lambda can’t handle real AI? These controversial .NET 9 + AWS hacks crushed cold starts, killed GPU bills, and shocked our SRE team… Continue reading on .Net Programming »
-
Advanced Governed Access in .NET Data Platforms
medium.com Issue #257
Building a governed access layer means more than just gating data
-
Build a Simple Habit Tracker in C# Console with JSON Storage
c-sharpcorner.com Issue #256
In this beginner-friendly C# article, you'll learn how to build a Habit Tracker application using a simple console interface and JSON for persistent storage. This project will help you manage daily ha...
-
Repeater Control in ASP.NET Web Forms with C#
c-sharpcorner.com Issue #256
Learn how to use the Repeater control in ASP.NET Web Forms with C# to display IPO data from a SQL Server database. This lightweight, customizable control is ideal for simple, flexible, HTML-driven dat...
-
Dictionary.Empty: Why there’s no direct equivalent to Array.Empty in C#?
medium.com Issue #256
In my current codebase, there’re plenty of places where I’d like to pass Dictionary.Empty<TKey, TValue> instead of writing [] or new…
-
-
-
C# StringBuilder Pool: The Ultimate Hack for Faster String Operations
medium.com Issue #255
Optimize string operations in C# using StringBuilder Pool.