What’s New in ASP.NET Core 9
No Comments
ASP.NET Core 9 boosts Minimal API with lower memory use, OpenAPI generation, and small API…
Understanding IEnumerable and IQueryable in C#
No Comments
Understanding IEnumerable vs. IQueryable in C# is key for performance. Learn when to use each…
What’s new in System.Text.Json in .NET 9
No Comments
System.Text.Json 9 brings JSON schema support, nullable reference types, custom enum names, flexible serialization, and…
Efficient Synchronization in C# with SemaphoreSlim
No Comments
SemaphoreSlim in C# controls concurrent access to resources, supports async operations, and is ideal for…
Boost Your App’s Performance with .NET Benchmarking
No Comments
Boost your .NET app’s performance with BenchmarkDotNet! Measure execution time, memory usage, and optimize your…
Understanding ValueTask in C#
1 Comment
ValueTask is a value type that helps reduce allocations in async methods, optimizing performance for…
What’s New in C# 13
1 Comment
Overview of C# 13 features. Learn params collections, new lock type, partial properties and many…
Performant Compile-Time Logging in .NET
2 Comments
Logging is a critical part of software development. Learn how to improve logging performance, safety,…
3 Methods to Create Middleware in ASP.NET Core
No Comments
In ASP.NET Core, middleware is a component of the request-processing pipeline. Learn three methods how…