I have plenty of articles in my //TODO list, but I found something that really brings the dopamine for a serial side project starter that isn't as...
Sadly, C# does not ship with a Result<T> as part of the BCL. Even sadder, our friends lucky enough to work in F# have a really good one, so the .NET...
This post is part of a series called Basics in Blazor, where I explore returning to the simplicity of web UI, preferring semantic HTML and CSS to...
As a developers, sometimes our end user is going to be other developers. When this happens, it's prudent for us to use all the tools available to us...
IEnumerable<T> has become one of the most popular ways not only to manipulate collections, but to pass them around as a read only structure. The power...
It's not uncommon to see code like this: if (someCondition is true) { // Do a thing // Do more things // do a final thing return...