January 2009 Entries

Generic CreateRange Extension

I was in need of a CreateRange method, similar to the Enumerable.Range(1, 10), that return an Enumerable of Dates. Doing a search I stumble along this blog post, which contains a generic CreateRange method. I then went ahead and converted the code to use extensions. Here’s the end result: 1: public static IEnumerable<t> CreateRange<t>(this t sender, t end, Func<t, t> func) where t : IComparable 2: { 3: if (sender.CompareTo(end) ==...

posted @ Wednesday, January 21, 2009 9:39 AM | Feedback (0)

Silverlight en Español- Silverlight in Spanish

[English version below] Shawn Wildermuth y el Silverlight tur vienen para Miami del 13 al 15 de Abril. La clase va a ser en Español y la va a dar DevWorx. Es una buena oportunidad para empezar aprender Silverlight. Shawn Wildermuth and his Silverlight Tour are coming down to Miami from April 13th to the 15th. The class will be in Spanish and will be taught by DevWorx. This is a great opportunity to start learning Silverlight.

posted @ Monday, January 12, 2009 11:27 AM | Feedback (0)