Reference types, Nullables, immutability and side effects
Nov 24, 2023
Many programming languages have reference types and value types with some differences in concept between them, but here we will ask about how this works in C#, and also how these concepts are related to immutability and side effects (code smell).
Exploring .NET DateOnly and TimeOnly
Mar 28, 2023
With the release of .NET 6, we have two new types TimeOnly and DateOnly dedicated for time and date respectively. I will explore these new two types and the good DateTime and explore some tips and tricks.