Design Patterns – Factory Pattern
In the previous blog post we started our journey through the design pattern network with the Strategy Design Pattern. You can find more information about this <here>. In this blog [...]
In the previous blog post we started our journey through the design pattern network with the Strategy Design Pattern. You can find more information about this <here>. In this blog [...]
Design patterns are used consciously and sometimes unconsciously every day to solve certain recurring problem areas within software development. They are code patterns other developers have noticed they used repeatedly [...]
In Visual Studio, when debugging, the Watch-window uses the ToString()-method of the item you want to explore. When watching a complex type like a class, this might not give you much [...]
I’ve got to use LINQ a fair bit lately. Not to query a database, but on lists with LINQ To Object. Here’s a little test I did using the Aggregate [...]
A while back I needed to process some data that came from a webservice, a weather API. As you may know, these services usually have far more data then you [...]