Introduction: In recent years, Microsoft Entra ID has moved away from legacy service account and username/password-based authentication patterns for SharePoint access. These older approaches are no longer recommended because they…
Introduction: Incorporating Azure Key Vault with ASP.NET Core web applications represents a pivotal development in the protection of sensitive information and configuration details. As the landscape of cybersecurity threats continues…
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: The pattern matching was introduced with C# 7 from then it’s kept on evolving and now with C# 11 we got a new feature called List pattern matching….
Introduction: Almost 15 new features have been released with C# 11. In this series we will be exploring all the new features in C#11. In this blog I’m going to…
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:…
What is unit testing? A unit test is a code that will, in an automated way, invoke code to be tested and it will check an assumption about the behavior…