Prefer ValueTask for Interfaces
[More]
How do you debug your JWT bearer token in .NET 6?
[More]
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]

Complex business logic can be simplified by implementing
this as a decision table using C# pattern matching.
[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]
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]
Should I really care if I am using i++
, ++i
or i += 1
in a loop?
Short answer is that there i
[More]
What is the effect of using async
and await
on a method that simply calls another async
method.
[More]
Supporting Collections
I have added support for nested collections to my Equals
implementation
[More]