c-sharp Bonus - Builder Pattern with the implicit operator using c# By using the implicit operator we can skip the Build method on our builders
c-sharp 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 core 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!