Get your WCF client configuration from anywhere

An application that consumes one or more WCF services needs to provide the address, binding protocol, and contract (ABC) of each end point in its app.config file. This article shows an easy way to let the application get its WCF client configuration data from anywhere: a flat file, a database, even ... [More]

Add Search support for Add Reference

Visual Studio 2010 now comes packed with too many assemblies. The list of assemblies to pick from in the Add Reference dialog is now a little too large for my taste. Today, while browsing around in the Visual Studio 2010 Extension Manager, I found the Search References extension: After installin... [More]

Farewell father

Today, at 18h30, my father-in-law Gaston Dhaese passed away after a 9 year battle against cancer. I’ve been told he didn’t suffer any pain, and I am glad he could die in piece with his loving family close by. Dear father, you have always been good and fair to me, my wife Isabelle and our children... [More]

Lambda Curry

Note: if you’re looking for lamb curry, you came to the wrong place. This post is about C# programming techniques. Currying a function is a technique named after Haskell Curry, to transform a function with multiple parameters into a series of functions having one parameter each. The technique is im... [More]