Re: [Python.NET] using c# method from python

2010-02-18 Thread Tribble, Brett
ssembly.myClass() myObjectHandle.bar() From: pythondotnet-bounces+btribble=ea@python.org [mailto:pythondotnet-bounces+btribble=ea@python.org] On Behalf Of munawwarah Chamroo Sent: Thursday, February 18, 2010 1:34 AM To: pythondotnet@python.org Subject: [Python.NET] using c# method from p

[Python.NET] using c# method from python

2010-02-18 Thread munawwarah Chamroo
Hi, I am currently developing an application where i need to call some c# methods from my python code. I want to know if this is possible to do using pythonnet and how to do it. for example i have a c# class foo and in foo i have a method bar() Now i need to call method bar() in my python code. Ho