I'm using the Python .Net library so I don't have access to List<T>. Currently when I try to initialize an Array an error is thrown.
The documentation has an example that is throwing an error from the latest code base.
Ex:
from System import Array
myarray = Array[int](10) #TypeError: Cannot convert 10 to System.Int32[]
The following works on 64bit but not on 32bit!
myarray = Array[int]([10]) #OverflowError: value too large to convert
myarray = Array[int]([10])?