9 entries
In case you've been under a rock recently, Visual Studio 2008 was released recently which supports a lot of functional capabilities like lambda expressions....
Visual Basic annoys me because of the way arrays are initialized. What's the semantic difference between the two lines of code below? CVB.NET Here's a hint -...
This post is just as much for me as it is to share... I was attempting to create a automatically resizing GroupBox control that would let users drop controls...
I'm not sure how often people run into situations where the ManualResetEvent is needed, but I have a few times. System.Threading.ManualResetEvent provides an...
If you've ever wondered why the increment and decrement operators weren't included in VB.NET, here's a post explaining why. Coming from the C/C++ world, I...
I've been using the System.Collections.Generic namespace an awful lot lately. I really like it, too. I use the List<T collection all the time. It is so much...
Let's say you have the following class: We've set up the [Property]Changed events so that DataBinding will work correctly. Now, let's assume you want to bind...
I was curious if anyone knew if Visual Studio 2005 had the capability to highlight or color "User Types" (i.e. classes you write yourself) while coding in...
My post earlier today referred to the FileHelpers library by Marcos Meli. Wow, do I wish I had known about this earlier. This thing is great! With a few easy...