Tim Van Wassenhove

Passionate geek, interested in Technology. Proud father of two

05 Dec 2009

Bing vs Google in 5 seconds

A while ago i sat in a meeting and some ms-fanboy used Bing to find out how much 60 inches were in meters. The first pag...
04 Dec 2009

In case you really have to Append one array to another

Here is another problem i’ve seen people solve once too many: Append one array to another. STOP. Revisit the probl...
21 Nov 2009

Easy pattern for Control state

If you have decided that your WebControl requires to maintain it’s state you will want to figure out how to implem...
19 Nov 2009

Silverlight and unit testing..

A while ago i was looking for a unittesting framework that can be used with Silverlight. Because i don’t want to l...
06 Nov 2009

Couple of methods missing on ObservableCollection

Here are a couple of methods that are missing on ObservableCollection public static class ObservableCollectionExtensions...
06 Nov 2009

Presenting FilterList

Earlier today i decided to add ‘Filtering’ to my SortableBindingList. This resulted in writing a FilterList ...
01 Nov 2009

Another method i wrote once too many

Virtually every Silverlight application will fetch resources at one point or another. In case you’re using the Web...
29 Oct 2009

Party for one

Inspired by Jimmy Bogard’s More missing LINQ operators i found another one public static IEnumerable<T> Make...
29 Oct 2009

Presenting PathBuilder

Currently it is annoying to build a path with Path.Combine var home1 = Path.Combine(Path.Combine(Path.Combine("C"...
19 Oct 2009

Separation of concerns: Behavior = Trigger + TriggerAction

If you look at my KeyBehavior you notice that it is doing two things: register for events so that the behavior can be tr...