Subscribe to my newsletter and never miss my upcoming articles
Yesterday I learned that C# 9 has static anonymous functions and that I should probably use them by default, and you should probably too. But there's a caveat, you can only capture const or static state within them. Here is an example: int nonStaticV...
From the things I've learned from DDD
A quick and rough simplification
First of all, cloning an object in C# usually mean to create a new instance of the same type with all data copied from the original instance over to the new instance. There are a few ways to clone objects in C#. You can for example, implement IClonea...
A simple first step towards more type-safe forms with Angular (no dependencies required)