1. I’d like to pass an array of 6 doubles to a method, but get an error message. For example, the “myMethod” call below fails when it requires a double array.

array=[1, 2, 3.5, 4]

myObject.myMethod(array)

  1. I’d like to invoke an overloaded operator, or it’s backing op_xxx method. For example, both of these fail:

myComplex = myComplex1 + myComplex2

myComplex = Complex.op_Addition(myComplex1, myComplex2)

_______________________________________________
users-ironpython.com mailing list
users-ironpython.com@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to