8 Dec
2008

Tool List 2008

I recently received the opportunity to reinstall my operating system on my work laptop.  Good times, completely hosed.  So I thought I would take a moment to document what went back onto my laptop after the format and reinstall.  Essentially, this is my productivity tools list. Operating system Windows Vista.  I’ll take some flack for […]

Read More
10 Oct
2008

On the Alt.Net Podcast

Category:UncategorizedTag: :

This post is a bit late, but I thought I should mention that I’m on the Alt.Net Podcast talking about JQuery in ASP.Net with Rick Strahl, Dave Ward, Bertrand Le Roy, Scott Koon, and Steven Harman. This was a fun podcast to be on, even though we had a few hick-ups along the way (I […]

Read More
4 Oct
2008

LINQ in Depth: Understanding ToArray()

In my last post, I showed a bit of code that would take any list, array, diction, or IEnumerable implementer, and return a delimited string. My solution created a StringBuilder, then looped thru the list, adding the values to the StringBuilder each time.  Then, finishing up, remove the last delimiter. The other solution is to […]

Read More
29 Sep
2008

Generic C# WinForms

When Generics was first released in .Net 2.0, I was kind of surprised how few built in generic types there were.  A List, a dictionary, a event handler; but not much beyond that.  Nothing like what you see with C++ STL, ATL, or WTL. (turns out there are some reasons for that, C++ Templates can […]

Read More