.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 26 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 26 of 59
Newest first
-
20+ Code Hacks to Instantly Boost Your Productivity in .NET Core
medium.com Issue #305
Just follow these quick tricks those are helpful in day-by-day coding.
-
⚡ Understanding Span and Memory in C#: The Hidden Power Behind Modern High-Performance .NET
mohit8830.medium.com Issue #304
List<T> = Flexible but slow (heap-based, many allocations) Span<T> = Ultra-fast, stack-based, local memory access Memory<T> = Async-safe…
-
Implement UPSERT – Insert and Update using Fabric Data Pipeline
c-sharpcorner.com Issue #304
Discover how to efficiently implement UPSERT (Update or Insert) operations within Fabric Data Pipelines. This guide provides a practical approach to seamlessly manage data updates and insertions, ensu...
-
How to Create a Custom .NET Package and Import It Locally
medium.com Issue #304
Creating a custom package is a great way to reuse common code across multiple projects.
-
Unsafe Code in C#: When and Why It’s Worth It
medium.com Issue #304
Discover how unsafe code in .NET lets you trade safety for speed, master pointers, and optimize performance-critical applications.
-
How .NET Code Works Behind the Scenes: Explained for Beginners
medium.com Issue #304
Ever wondered what really happens when you hit “Run” in a .NET app?
-
Microservices in .NET Core: A Beginner-Friendly Guide
c-sharpcorner.com Issue #304
Unlock the power of microservices in .NET Core with this beginner-friendly guide! Learn how to build scalable, maintainable, and resilient applications by breaking them down into independent services....
-
.NET AI Community Standup - Getting Started with the Microsoft Agent Framework
youtube.com Issue #304
Thread Safety in .NET: Avoiding Race Conditions and Deadlocks
-
Your .NET App Doesn’t Need a Database on the Hot Path — Meet the Local Caching Revolution
medium.com Issue #304
How hybrid in-memory + distributed caching patterns are quietly replacing database round-trips in real-world .NET systems. Continue reading on ILLUMINATION’S MIRROR »
-
.NET Debug vs Release Mode: The Complete Developer’s Guide
medium.com Issue #304
Unlock the secrets of .NET compilation modes and supercharge your development workflow
-
⚙️ Understanding Kestrel Web Server in .NET Core — Deep Dive with Real-World Examples
c-sharpcorner.com Issue #302
Dive deep into Kestrel, the cross-platform web server for ASP.NET Core! Learn its architecture, how it handles requests, and how to configure it for optimal performance. Discover real-world examples, ...
-
Base Class Library (BCL) in .NET
medium.com Issue #301
The Base Class Library (BCL) in .NET is a fundamental component of the .NET Framework and .NET Core (now part of .NET 5 and later). It… Continue reading on .NET Framework with C#— Common and Uncommon ...
-
Understanding Dependency Injection (DI) in .NET Core with Simple Examples
c-sharpcorner.com Issue #300
Unlock the power of Dependency Injection (DI) in .NET Core! This guide provides a clear understanding of DI principles with practical examples, including a Car/Engine scenario and the built-in ILogger...
-
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...
-
CQRS: Scale Your Database Without Breaking the Bank
medium.com Issue #300
How to stop fighting with your database and optimize it for reads and writes, using the right tool for each job.
-
Updating and Deleting Tasks in Our .NET
medium.com Issue #300
In the previous post, we created new tasks and got our backend to communicate with PostgreSQL. By including Update (PUT) and Delete…
-
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.
-
C# Channel’s Loops and Errors: Don’t Let Your Consumers Crash
blog.stackademic.com Issue #300
Part 3in a beginner-friendly guide to thread-safe async messaging in .NET Continue reading on Stackademic »
-
How to Automate Your .NET Applications in Real-World Scenarios
medium.com Issue #300
As a developer, you often end up repeating the same tasks — whether it’s data processing, report generation, or managing files. Automation…
-
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#…
-
7 Performance Traps Every .NET Developer Should Avoid
medium.com Issue #300
Performance issues in .NET applications are rarely caused by a single big mistake.
-
Deploying .NET Applications to Azure and AWS: Step-by-Step Guide
c-sharpcorner.com Issue #300
Unlock the power of cloud deployment for your .NET applications! This step-by-step guide provides a comprehensive walkthrough of deploying .NET apps to both Microsoft Azure and Amazon Web Services (AW...