Tuesday, June 24th, 2008 Posted in Programming | 4 Comments »
Awhile back I wrote a post about how to create a generic (and type-safe) version of the ThreadPool.QueueUserWorkItem method. It really opened up a lot of possibilities since the C# ... Read more..Sunday, June 22nd, 2008 Posted in Programming | 4 Comments »
In my last post, I discussed a method that could be used to run an anonymous method in another AppDomain. This approach works great if you have an ... Read more..Saturday, June 21st, 2008 Posted in Server | No Comments »
I try not to "meta-blog", but I recently discovered some neat tools that have really helped me out a lot. The CopySourceAsHTML plugin for Visual Studio is pretty amazing. ... Read more..Saturday, June 21st, 2008 Posted in Programming | 1 Comment »
I've been working on a small project where I was creating a plugin-based system and needed to execute a small snippet of code in another AppDomain. Normally there is a ... Read more..Saturday, June 14th, 2008 Posted in Programming | 2 Comments »
One of the most popular interview questions to weed out the good candidates from those that can't code at all is the "FizzBuzz" problem. It's a simple programming exercise: ... Read more..Saturday, June 14th, 2008 Posted in Programming | 6 Comments »
Lately I've been doing a lot of multithreaded programming and have been searching for different ways to accomplish this task. It's certainly not straightforward and requires a solid understanding of ... Read more..Wednesday, June 11th, 2008 Posted in Programming | No Comments »
Awhile back I was working on a mock-up of a simple WinForms application and wanted to "take it to the next level". You know, polish it up and look ... Read more..Tuesday, June 3rd, 2008 Posted in Programming | 2 Comments »
One of the most useful features of Visual Studio 2005 (and 2008) is the ability to decorate classes, methods and properties with comments and automatically generate an XML file containing ... Read more..