C# Record – How is it different from classes?
C# 9 introduced a new type - record. C# 10 introduced record struct. In this article, we are going to see how the classes and structs are different from this…
C# 9 introduced a new type - record. C# 10 introduced record struct. In this article, we are going to see how the classes and structs are different from this…
Is this title confusing ? I must admit thought a lot about what should be the title of this blogpost and could not come up with better than this one.…
This article is an extension to previous article about .NET generic host. There are many framework provided services, which are registered automatically. For full list, see Dependency injection in ASP.NET Core.…
In this article, let's have a look at the default interface methods feature which has been added in C# 8. Scenario of Evolving Interfaces Let's take a scenario to understand…
There are two access modifiers which can easily cause confusions - protected internal and private protected. In this article, we are going to discuss about these two access modifiers. Access…
In this article, let's try to see how can we use .NET client SDK with Cosmos DB. We will have look at important APIs to manage the database. In this…
Azure does not provide any ability to move the data. You have to copy the data and then delete form the original container if you want to move the data.…