Re: [Python.NET] Can I create extension file by C#?

2007-11-06 Thread Feihong Hsu
Just make an ordinary C# class, then when you compile it make sure to use the /target:library switch. Once it's inside a .DLL file, you can use that class from IronPython. C# file (Example.cs): using System; namespace Example { public class ExampleClass { public void ExampleMet

Re: [Python.NET] What can I do with DLL?

2007-11-06 Thread Christian Heimes
jane janet wrote: > I'm a student. I wanna know how to do about my project. > I implemented aplication using Ironpython because I have to use .NET library > and c# code but I also have to use this application with another Python > implemented application. My teacher want me to create DLL file of

[Python.NET] What can I do with DLL?

2007-11-06 Thread jane janet
Hello all, I'm a student. I wanna know how to do about my project. I implemented aplication using Ironpython because I have to use .NET library and c# code but I also have to use this application with another Python implemented application. My teacher want me to create DLL file of IronPython i