Approaches for Resolving Nullable Warnings on Existing Codebase
In the previous article, we have discussed basic concepts about what nullable reference types means and how this feature can be enabled. As you may already know, this feature is…
In the previous article, we have discussed basic concepts about what nullable reference types means and how this feature can be enabled. As you may already know, this feature is…
Since the beginning of C#, all reference types in C# are nullable. This means, if you create a variable of any reference type, you can assign a null to it.…
In the previous post, I have tried to jot down few concepts related to .NET upgrade. While working on that post, I also got to know about the .NET Upgrade…
This article is bit late to the party. The .NET 5 support ended on 10 May 2022. So it is high time, that the applications which are on .NET 5…
Recently, I have seen many people posting the "performance" stats of the small code snippet. I started reading about how that is done and that's how I got to know…