Archive for June, 2008

ThreadPool.QueueUserWorkItem With Multiple Arguments

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..

Run Anonymous Methods in Another AppDomain, Part 2

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..

CopySourceAsHTML and Windows Live Writer

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..

Run Anonymous Methods in Another AppDomain

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..

FizzBuzz the Functional Way

Saturday, June 14th, 2008 Posted in Programming | No 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..

Multithreading and Concurrency in .NET

Saturday, June 14th, 2008 Posted in Programming | 5 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..

Krypton Toolkit Controls

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..

Generating XML Documentation with Sandcastle

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..