Posts from 2021
-
2021-01-18 Using Result Classes
Over and over I have found cases where returning a single value from a function is not enough. Enter the Result class.
-
2021-01-09 The Power of the Compose Method Refactoring
The Compose Method Refactoring is one of the more powerful refactorings I use. Let’s explore what it is and why it can make such a difference it your code.
-
2021-01-02 Memory Leaks using Dependency Injection with .NET Core
I inherited a .NET Core application that had a memory leak. I found the source to be the way the application used the Dependency Injection framework. It was something I could have easily done myself so I figured I better write down the details to remind my future self to avoid the same issue.