Re: [python-win32] Passing string[] parameters to c# .NET function

2013-07-19 Thread Vernon D. Cole
Reaching to a .NET assembly from traditional (non managed) code such as CPython is not easy. Have you looked at IronPython? It is true Python, but is an implementation written in .NET, so it interacts with .NET assemblies much more easily. (Unfortunately, it has no ability to talk to Pywin32

Re: [python-win32] Passing string[] parameters to c# .NET function

2013-07-19 Thread Tim Roberts
Vernon D. Cole wrote: Reaching to a .NET assembly from traditional (non managed) code such as CPython is not easy. Well, based on the partial solution that he has so far, I'm assuming he has exported a COM object from his .NET code. At that point, it shouldn't be any different from any other