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
Timothy Fitz wrote:
> On 5/10/05, Jim Hugunin <[EMAIL PROTECTED]> wrote:
> > >>> apt[0].X = 0
> > If value types were immutable this would throw. The exception
message
> > might give people enough information to get started tracking down
the
> > issue and modifying their code to work correctly.
>
On 5/10/05, Jim Hugunin <[EMAIL PROTECTED]> wrote:
> >>> apt[0].X = 0
> If value types were immutable this would throw. The exception message
> might give people enough information to get started tracking down the
> issue and modifying their code to work correctly.
I want to say this should be eq
I think that value types are a real advantage of the Common Language
Infrastructure (CLI) even though they make life more difficult for
IronPython. They're an advantage because they're an essential concept
for a number of data structures and people will use the notion of a
value type whether or no
Yann,
I found the information that I needed concorning the Office 2003
primary interop assemblies (PIAs) at
http://msdn.microsoft.com/library/default.asp?url=""
I have not had a chance to look into the PIA deeper, but I will try to get to is as soon as I find sometime..
Regards,
AnthonyOn 5/9/