frameworks
.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1444 articles Updated Page 27 of 58
Browse additional .NET Core articles from the DotNetNews archive.
.NET Core articles
Page 27 of 58
Newest first
-
Top 10 .NET Interview Questions — Part-2
medium.com Issue #299
it’s about showing your depth in architecture, design, and problem-solving.
-
C# 14 Extension Members: A Deep Dive Into Power, Patterns, and Pitfalls
c-sharpcorner.com Issue #299
C# 14 introduces extension members, expanding the capabilities of extension methods to include properties, indexers, operators, and events. This feature enhances API design by allowing developers to e...
-
Encapsulation in C#: Keeping Data Safe and Code Clean
medium.com Issue #299
When I started learning C#, one thing confused me a lot: why not just make everything public? I mean, if I can access variables directly…
-
Cache Stampedes in .NET
nemanjakukulicic.medium.com Issue #298
Ever had your cache hit by thousands of requests at the same time, only to watch multiple cache misses trigger identical database calls
-
Spinning Up a Minimal Todo List API in .NET
medium.com Issue #298
As a JavaScript developer, I’ve always worked with React + NodeJS, but I recently decided to dive into .NET to understand how to build a…
-
What .NET 10 GC Changes Mean for Developers
roxeem.com Issue #298
What if I told you that starting with .NET 10, several of your fundamental ideas about garbage collection are now outdated? Imagine that…
-
Understanding Constructors and Destructors in C# (.NET)
medium.com Issue #298
Constructors and destructors are foundational concepts in object-oriented programming, and mastering them is key for any .NET developer… Continue reading on .Net Programming »
-
ASP.NET Community Standup - Razor Reloaded
youtube.com Issue #298
🔴 VS Code - Let it Cook - Background Coding Agents
-
Top 15 .NET Interview Questions (With Answers & Examples)
medium.com Issue #298
Whether you’re a fresher or an experienced developer, .NET interviews often test both your fundamentals and real-world problem-solving…
-
-
End-To-End Traces with OpenTelemetry and .NET
blog.devgenius.io Issue #297
In a previous post I showed how to ship metrics from .NET using OpenTelemetry. Continue reading on Dev Genius »
-
Top C# Features You’re Probably Not Using (But Should Be) for Better .NET Development
blog.devgenius.io Issue #297
Let’s be honest: as developers, we’re creatures of habit. We find patterns that work, stick with them, and often resist change — even when… Continue reading on Dev Genius »
-
C# ASP.NET Developer Roadmap 2025 —
medium.com Issue #297
Your Path to Success Continue reading on AI Career Quest »
-
Understanding .NET Worker Services
c-sharpcorner.com Issue #297
Unlock the power of .NET Worker Services! This article explores how to build robust background processes for tasks like email dispatch, data processing, and queue management. Learn about the lifecycle...
-
IEnumerable vs IQueryable in .NET
c-sharpcorner.com Issue #296
Learn how IEnumerable handles in-memory data efficiently, while IQueryable shines with remote data sources like databases, translating LINQ to SQL for server-side filtering. Choosing the right interfa...
-
Async and Await in C#
c-sharpcorner.com Issue #296
This comprehensive guide simplifies complex concepts, demonstrating how to write responsive and scalable applications. Learn to handle I/O-bound and CPU-bound operations efficiently using Tasks and th...
-
Boost Your .NET Projects: Simplify Unique Key Generation with KeyGenerator in Spargine
dotnettips.wordpress.com Issue #296
The KeyGenerator in Spargine is an efficient tool for generating unique keys using GUIDs, ideal for object IDs and database records. It offers methods for creating keys with or without prefixes. This ...
-
-
C# Channels Demystified: Stop Fighting Threads and Start Writing Cleaner Code
blog.stackademic.com Issue #295
Part 1 in a beginner-friendly guide to thread-safe async messaging in .NET Continue reading on Stackademic »
-
Compress HttpClient requests with GZIP
josef.codes Issue #295
By streaming the gzip compression instead of using MemoryStream, we can significantly reduce memory allocation and avoid OutOfMemoryExceptions with large payloads.
-
Null-Conditional Assignment in C# 14
c-sharpcorner.com Issue #295
C# 14 introduces null-conditional assignment (?.=), a syntactic sugar that simplifies null checks before assignments. This feature reduces boilerplate code, enhances readability, and aligns assignment...
-
5 Traps That Break .NET Background Services in Production (and How to Fix Them)
medium.com Issue #295
Five production traps with .NET BackgroundServices — and the patterns that kept them from silently killing our system.
-
.NET 10 Features I Can’t Wait to Use
medium.com Issue #295
C# 14 is bringing a wave of subtle yet powerful improvements designed to boost developer productivity, improve code readability, and…
-
From Assemblies to Objects: Demystifying .NET’s Core Building Blocks
medium.com Issue #294
Refined Topics
-
Untangling .NET, .NET Core, ASP.NET, and ASP.NET Core (Without the Confusion)
medium.com Issue #294
When I first stumbled across .NET, I honestly thought it was just another programming language like Java or Python. Then I ran into terms…