jos.enumeration Enumeration class in C# using records Let's see if we can optimize the Enumeration class provided by Microsoft in "eShopOnContainers"...
c-sharp C# - Tips and Tricks 02 - Named tuples Use named tuples to improve the readability/usability of your code
dotnet C# - Tips and Tricks 01 - Covariant return types Use covariant returns to override the return types of properties and/or methods
c-sharp My take on the Result class in C# Don't use exceptions for flow control, use a custom Result class instead!
c-sharp Using records when implementing the builder pattern in C# Here I'm showing some alternative ways of implementing the builder pattern by using regular classes, records and the new init keyword