NSandbox: An Introduction

Monday, October 13th, 2008 Posted in Programming | No Comments »

In my last post I introduced a new utility library called NSandbox that makes interacting with AppDomains, or sandboxes, incredibly easy.  I didn't go into specifics about how to use ... Read more..

Announcing: NSandbox on Sourceforge

Thursday, October 9th, 2008 Posted in Programming | 5 Comments »

Have you ever needed to: Use a "plugin" architecture? Unload an assembly after using it? Execute arbitrary code with different ... 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..

Run Anonymous Methods in Another AppDomain

Saturday, June 21st, 2008 Posted in Programming | 3 Comments »

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