With the new .NET 7 we see increased code generation being used for efficiency. In this blog I want to discuss the added support for regular expressions.
[More]
Program.cs
void Print(int value) => Console.WriteLine(value);
void Print(string value) => Console.WriteLine(value);
[More]
The last version of SPFX, the SharePoint Framework, comes with a new extension: the Adaptive Card Ex
[More]

Complex business logic can be simplified by implementing
this as a decision table using C# pattern matching.
[More]
{
...
"CORS": {
"AllowedDomains": [ "https://localhost:44306" ]
}
}
[More]
With .NET 6 comes C# 10, and this has a couple of interesting language features. Here I want to disc
[More]
Using Nullable Reference Types
Introduction
One of the major sources of unexpected runtime er
[More]
A look at Azure Static Web Apps
Setting up a Static Web App
A nice addition to Azure is stati
[More]
Creating bots with the Bot Framework Composer
On some of our courses we teach people how to creat
[More]
With Blazor you can postpone loading certain assemblies, to get your application up-and-running faster.
However, when you move components to be lazy loaded you will encounter problems with lazy loading.
In the blog post I want to show you how you can enable lazy loading, and how to handle dependency injection for those components.
[More]