News

Take advantage of extension methods to add functionality to existing types without needing to modify or derive from those original types. In the C# programming language, extension methods enable you ...
The Template Pattern is a common software design pattern that allows the steps of an algorithm to be overridden by the implementing class without affecting its structure. Today, I'll go over how to ...
When working in applications you might often find that the source code has become so complex that it is difficult to understand and maintain. Fluent interfaces and method chaining are two concepts ...