RE: [IronPython] 'out' parameters

2005-05-11 Thread Jim Hugunin
n > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Nick Jacobson > Sent: Tuesday, May 10, 2005 11:08 PM > To: users-ironpython.com@lists.ironpython.com > Subject: [IronPython] 'out' parameters > >

RE: [IronPython] 'out' parameters

2005-05-11 Thread Martin Maly
Sent: Tuesday, May 10, 2005 11:08 PM To: users-ironpython.com@lists.ironpython.com Subject: [IronPython] 'out' parameters How will IronPython deal with functions that, in C#, use an 'out' variable? For example, in Microsoft.DirectX.Direct3D, this function exists: public bool C

[IronPython] 'out' parameters

2005-05-10 Thread Nick Jacobson
How will IronPython deal with functions that, in C#, use an 'out' variable? For example, in Microsoft.DirectX.Direct3D, this function exists: public bool CheckCooperativeLevel(out int result); If I call this from IronPython, there's no way that the value of result would be modified, right? But it