Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Vernon Cole
lf Of Vernon Cole > Sent: Wednesday, March 30, 2011 5:39 PM > To: Discussion of IronPython > Subject: Re: [IronPython] Newbie InterOp-related question > > > x = my_goofy_routine() > print repr > > Vernon Cole > (sent from my 'droid phone) > > On Mar 30, 2011 1:

Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Daniel Jennings
I think you mean print repr(x) :) From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Vernon Cole Sent: Wednesday, March 30, 2011 5:39 PM To: Discussion of IronPython Subject: Re: [IronPython] Newbie InterOp-related question x = my_goofy_routine

Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Vernon Cole
urn of 4 or 5 arrays of strings and ints (horrible API I'm dealing with) > > > > Paul > > > > From: Markus Schaber [mailto:m.scha...@3s-software.com] > Sent: Wednesday, March 30, 2011 12:42 AM > To: Discussion of IronPython > Subject: Re: [IronPython] Newbie I

Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Tilley, Paul
Wednesday, March 30, 2011 12:42 AM To: Discussion of IronPython Subject: Re: [IronPython] Newbie InterOp-related question Hi, Paul, it's documented at http://ironpython.net/documentation/dotnet/dotnet.html#ref-and-out-parameters. The out parameter will be mapped as an addition

Re: [IronPython] Newbie InterOp-related question

2011-03-29 Thread Markus Schaber
Hi, Paul, it's documented at http://ironpython.net/documentation/dotnet/dotnet.html#ref-and-out-parameters. The out parameter will be mapped as an additional return value. So if myComObj.foo returns void, a simple call like blah = myComObj.Foo() should do the trick. Grüße,