Model View Presenter Revisited
The MVP pattern is a pattern that came into being in the early 1990s by Taligent. This pattern is mostly used inside WinForms and WebForms.The View normally don't do anything. The official...
View ArticleWe all produce code that we really aren't proud of
Everyone produce code. Some peoples give birth to some beautiful, elegant and maintainable code sometime in their career. But pretty much all developers will one day or another give code that is so...
View ArticleImplementing a Chain-of-responsibility or "Pipeline" in C#
Anti-Patterns are interesting in showing you what you are doing wrong. However, patterns are also interesting in showing you how to do it well.This time, I want to show how to implement a simple...
View ArticleMy baby steps to PostSharp 1.0
So... you downloaded PostSharp 1.0 and you installed it and are wondering... "What's next?".Well my friends, let me walk you through the first steps of PostSharp. What could we do that would be simple...
View ArticleSimple explication of the MVC Pattern
Since the last time I wrote a blog post was more than a few months ago, I would like to start by saying that I'm still alive and well. I had changes in my career and my personal life that required some...
View ArticleBack to basics: Why should I use interfaces?
So I had this interesting discussion with a colleague about having a clean architecture for a small software he is doing. Since it's his first step among SOLID, I wanted to take it easy see how things...
View Article