Look into the "Tutorial" folder of the ironpython distribution. There are examples in C# and in VB.Net.
If you know C# or any other .Net language, it's just a matter of writing your classes and compile them as .dll. Then you can create a "DLLs" directory into the same folder where your ipy.exe is located, and put all your extensions there. Lets say you defined a "Person" class into "MyExtension.dll". You simply add MyExtension.dll to your DLLs folder, and type "import Person" in your program. Luis _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
