Your Digest of .NET Updates, Tools, and Insights.
Mar 10, 2025
Deep Dive into .NET Updates.
Mastering C# Design Patterns: Practical Examples of Singleton, Factory, and Observer
This article provides practical examples of implementing the Singleton, Factory, and Observer design patterns in C#, illustrating how these patterns can be applied to solve common software design problems.
Injecting Action Method Values from Configuration in ASP.NET Core
This post demonstrates how to inject values from configuration files directly into action methods in ASP.NET Core, promoting cleaner code and easier maintenance.
Implement Phone verification, 2FA using ASP.NET Core Identity
Learn how to enhance security in your ASP.NET Core applications by implementing phone verification as a two-factor authentication (2FA) method using ASP.NET Core Identity.
Writing a .NET profiler in C# - Part 5
This article continues the series on building a .NET profiler in C#, focusing on creating a simple CPU profiler using the Silhouette library.
C# Dictionary: How to Create One and Best Practices - Stackify
An in-depth guide on creating and using dictionaries in C#, including best practices and performance considerations.
Blazor Basics: Lazy Load, Boost Blazor Wasm Performance
Discover how to implement lazy loading of assemblies in Blazor WebAssembly applications to improve performance by reducing the initial load time.
What are Custom Integrations in .NET Aspire?
This post explains the concept of custom integrations in .NET Aspire, highlighting their benefits and how they can enhance the application model by creating reusable and shareable components.
Why is gRPC so much faster than a JSON-based REST API?
An exploration of the reasons behind gRPC's performance advantages over JSON-based REST APIs, focusing on its use of HTTP/2 and Protobuf.
MassTransit with Azure Service Bus - Error management
This article discusses implementing error management in MassTransit with Azure Service Bus, providing strategies for handling faults and ensuring message reliability.