Introduction: What is AOT? With Ahead Of Time(AOT) compilation, publishing your apps as self-contained gives a platform-specific executable. The publish folder contains all the components of the app, including…
Introduction: The Generic Math support is also known as abstracting over static members. As the name indicates, it’s obvious that now you can declare static abstract methods as part…
Introduction: C# 11 outcome with the new enhancement in the string interpolation to support a new lines, which means the text inside the { and } for a string interpolation…
Introduction: In C# 9 and later we got an init keyword which defines an accessor method in a property, an init-only setter assign value to the property during object construction….
Introduction: In this blog you will learn how to define and execute regular expression, both for finding and replacing the content within string of data . Table of content:…
Introduction: API key authentication will keep a secure line between the API and clients, however, if you wish to have user authentication, go with token-based authentication, aka OAuth2.0. In this article,…
Introduction: What is EF core? EF core is a Microsoft’s Object Relational Mapper. It is a cross platform where you can build the application using EF Core and deploy…