Re: [IronPython] Application Domains and IronPython

2007-04-17 Thread Michael Foord
. Thanks Michael Foord http://www.voidspace.org.uk/ironpython/index.shtml > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord > Sent: Monday, April 16, 2007 3:12 PM > To: Discussion of IronPython > Subject: [IronPython] Applicat

Re: [IronPython] Application Domains and IronPython

2007-04-17 Thread Dino Viehland
ly from and where it's not finding them. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Monday, April 16, 2007 3:12 PM To: Discussion of IronPython Subject: [IronPython] Application Domains and IronPython Hello all, I'm trying t

[IronPython] Application Domains and IronPython

2007-04-16 Thread Michael Foord
Hello all, I'm trying to experiment with using AppDomains from IronPython - and not getting very far. I've created a simple assembly in C#, containing the following : using System; namespace goodbye { public class GoodbyeWorld { public void test() { Console.WriteLine("Goodbye World!"); } } }