C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 43 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 43 of 94
Newest first
-
PLINQ in .NET: Supercharging LINQ with Parallelism
medium.com Issue #303
When performance meets simplicity
-
The Painful Truth About Over-Abstraction in C# — And How to Fix It
medium.com Issue #303
Practical fixes for leaner C#.
-
Use CancellationTokens
steven-giesel.com Issue #303
This is a very small blog post on why you should use CancellationTokens in your API.
-
Step-By-Step C# Scripting Guide For Unity Beginners
medium.com Issue #303
C# scripting plays a crucial role in modern game development and software programming due to its simplicity, power, and versatility.
-
C# Partial Constructors and Events Explained with Real-Life Bank Example
medium.com Issue #302
How Partial Classes Make Your Code Cleaner and Events Make It Smarter
-
🔴 VS Code Live - v1.105 Release
youtube.com Issue #302
Interesting new C# 14 features coming with .NET 10
-
Abstraction in C#: Hiding the Mess, Showing the Magic
medium.com Issue #302
When I first heard the term abstraction, I thought: “Is this about painting abstract art? Because I’m terrible at drawing.”
-
C# tips: string.IsNullOrEmpty vs string.IsNullOrWhiteSpace
c-sharpcorner.com Issue #301
Understand the crucial difference between string.IsNullOrEmpty and string.IsNullOrWhiteSpace in C#. This article clarifies when to use each method for effective string validation. Learn how IsNullOrWh...
-
You’re Still Writing C#/.NET Like It’s 2015 — Here’s the 2025 Way
levelup.gitconnected.com Issue #301
If your C# still starts with namespaces at the top, MVC controllers everywhere, and new JsonSerializerOptions() sprinkled around, you’re… Continue reading on Level Up Coding »
-
Constants vs Read Only variables in C#
medium.com Issue #301
In .NET, both constants and read-only variables serve the purpose of defining values that cannot be changed during the execution of a… Continue reading on .NET Framework with C#— Common and Uncommon »
-
-
Must-Know System Design for .NET Developers (Extended Edition)
medium.com Issue #301
The Ultimate Interview Prep Guide Continue reading on Let’s Code Future »
-
Why I Still Choose C# (Even After Trying Everything Else)
medium.com Issue #301
The one language that keeps pulling me back, no matter what else I try Continue reading on Programming Letters »
-
Boost your C# skills by fixing these common coding pitfalls — write cleaner, faster, and more maintainable code. Continue reading on Medium »
medium.com Issue #301
Boost your C# skills by fixing these common coding pitfalls — write cleaner, faster, and more maintainable code.
-
C# Guid Helper Extension
c-sharpcorner.com Issue #300
Enhance your .NET projects with the GuidHelper extension! This helper provides methods for safely parsing, validating, and manipulating Guids. Easily check for empty Guids, parse strings into Guids (o...
-
C# Tip: Use Stack<T>, Not List<T>
c-sharpcorner.com Issue #300
Unlock performance gains in your C# applications! Discover why Stack<T> often outperforms List<T> when implementing LIFO (Last-In, First-Out) data structures. This tip explores the underlying re...
-
Struct vs Class in C#: Performance Considerations for High-Load Apps
medium.com Issue #300
`struct` vs `class` in C#: Learn the key differences between value types and reference types, and how they impact performance and memory.
-
Stop Using C# Enums the Wrong Way — Advanced Tips for ASP.NET & .NET Developers
shahedbd.medium.com Issue #300
If you’re treating C# enums as nothing more than fancy integer labels, you’re leaving powerful features on the table. Most developers I’ve…
-
How to Use Reflection in .NET: A Beginner’s Implementation Guide (Part 2)
thelifesyntax.medium.com Issue #300
Continuing with our previous part, we’ll directly jump on the implementation aspects of Reflection in .NET here.
-
Inheritance in C#: Reusing Code the Smart Way
medium.com Issue #300
When I first came across the word inheritance in programming, I thought it was going to be about money, wills, or family property. In C#…
-
C# .NET 9: How to Use Safety Annotations to Eliminate NullReferenceException
medium.com Issue #300
NullReferenceException is often called the billion-dollar mistake. Even with nullable reference types introduced in C# 8, there are still…
-
Classes and Objects in C#: Building Blocks of OOP
medium.com Issue #299
When I first learned about classes and objects in C#, the explanation I got was: “A class is a blueprint, and an object is an instance of…
-
How to Delete a Particular Item from an Array
c-sharpcorner.com Issue #299
Learn the safest and most efficient ways to delete items from Python arrays, avoiding costly errors. This guide uses a real-world insurance claims scenario to illustrate the dangers of improper deleti...
-
Master Zero-Allocation Programming: The Ultimate Guide to Span and Memory in C# — To Read
medium.com Issue #299
Unlock the secrets of high-performance, zero-allocation programming in .NET and revolutionize your application’s memory efficiency
-
A Beginner-Friendly Guide to .NET Reflection (With Practical Use Cases)
thelifesyntax.medium.com Issue #299
.NET Reflection. Its one of those topics in .NET that most developers have heard of, many have used it indirectly, but few feels confident…