Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Markus Schaber
, Markus Von: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] Im Auftrag von Tilley, Paul Gesendet: Mittwoch, 30. März 2011 01:10 An: users@lists.ironpython.com Betreff: [IronPython] Newbie InterOp-related question Hi, I've just started using IronPython

Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Tilley, Paul
, 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 additional return value

Re: [IronPython] Newbie InterOp-related question

2011-03-30 Thread Vernon Cole
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 InterOp-related question Hi, Paul, it's documented at http

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
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:27 PM, Tilley, Paul paul.til...@honeywell.commailto: paul.til

[IronPython] Newbie InterOp-related question

2011-03-29 Thread Tilley, Paul
Hi, I've just started using IronPython but have hit a bit of a roadblock. This may also be caused by inadequate .Net knowledge. In C# I can call a COM object (where the COM method is going to fill in the parameter) like so: object blah; myComObj.Foo(out blah); If for example the COM