I have a list comprehension operating on elements of an .NET array like
obj.arr = [f(x) for x in obj.arr]
However the assignment back to obj.arr fails.
Is it possible to convert a list to a .NET array in IronPython?
|
1
|
I have a list comprehension operating on elements of an .NET array like
However the assignment back to obj.arr fails. Is it possible to convert a list to a .NET array in IronPython?
|
|||
|
|
|
|
Try this:
replacing Alternatively:
|
||
|
|
|
Arrays have to be typed as far as I know. This works for me:
Similarly for strings and other types. |
||
|
|