
Mishel Shaji
324 posts
members
C# 14: Null Conditional Assignment
C# 14 introduces a new enhancement: null-conditional assignment!
Now, you can use the null-conditional member access operators ?. and ?[] on the left-hand side of an assignment.
What Does This Mean?
Before…
members
Configuring Entity Framework Core in a .NET Web API: A Comprehensive Guide
Developers can easily create rich, data-driven APIs with Entity Framework Core in a .NET Web API project. This article walks you through the process of setting up a Web API…
How To
members
Benchmarking .NET Applications with BenchmarkDotNet: A Step-by-Step Guide
Optimizing for performance is a very important part of making software, especially when it comes to improving .NET apps. Benchmarking is a great way to get an accurate picture of…
C Sharp
members
C# 14: nameof() Now Supports Unbound Generic Types
C# 14 introduces an exciting enhancement to the nameof operator, allowing it to work with unbound generic types. This means you can easily reference generic types without needing to specify type arguments.…