Starting to get LINQ

I’m finding that I’m using LINQ more and more for simple problems that would otherwise have longwinded solutions.  The brevity that LINQ offers is pretty powerful, and I appreciate that LINQ allows me to express what I want clearly and get the desired result. One example today was when working... [Read More]
Tags: LINQ

This alias is either really cool or just plain wrong

I was working in a custom control today that exposes a dependency property of type System.Collections.ObjectModel.ObservableCollection<System.DateTime>.  After typing that type name a few times I decided it was time for a using statement at the top of the file to shorten things up.  But even ObservableCollection<DateTime> is pretty long. I... [Read More]