.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 27 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 27 of 59
Newest first
-
.NET Core vs .NET Framework – A Complete Comparison for Developers
c-sharpcorner.com Issue #300
This article breaks down the key differences between Microsoft's two major development platforms. Learn about platform support, performance, deployment, and use cases to determine which framework is r...
-
Optimizing Array Performance in .NET: Getting the Most from ArrayPool
dotnettips.wordpress.com Issue #299
ArrayPool optimizes memory usage by providing a thread-safe pool of reusable arrays, significantly reducing allocations and garbage collection pressure, especially in high-performance scenarios. It's ...
-
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…
-
Best-practice architecture for .NET Core projects
c-sharpcorner.com Issue #299
Explore best-practice .NET Core architectures: Clean, Hexagonal, and Onion. Learn how to build maintainable, testable, and scalable applications by decoupling infrastructure and focusing on domain-dri...
-
Have You Seen .NET 10 Yet?
medium.com Issue #299
Pragmatic prep and dev tips Continue reading on Inside the IF »
-
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…
-
Rock Your Code: Coding Standards for Microsoft .NET (20th Anniversary Edition)
dotnettips.wordpress.com Issue #299
The 20th Anniversary Edition of Rock Your Code: Coding Standards for Microsoft .NET, authored by David McCarter, is now available on Amazon. This comprehensive guide offers updated standards for .NET ...
-
Clean Code Principles for .NET and React
medium.com Issue #299
Writing maintainable, scalable code across both stacks
-
.NET Conf 2025 is coming
youtube.com Issue #299
7 Surprisingly Simple Lessons I Learned Designing Aggregate Roots in .NET
-
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...