IronPython:将嵌套python列表转换为.NET数组的最有效方法

时间:2018-03-15 00:01:01

标签: python .net ironpython

我想知道一种典型的,高效的“pythonic”方法,用于将嵌套列表转换为类型化的.NET数组。目前我是在没有理解的情况下以天真的方式做到这一点,因为我无法弄清楚如何在没有指数的情况下做到这一点:

from System import Array

lstNest = [[j for j in xrange(2)] for i in xrange(10)]
intArr = Array.CreateInstance(int,10,2)
for i in xrange(len(lstNest)):
    for j in xrange(len(lstNest[i])):
        intArr[i,j] = lstNest[i][j]

0 个答案:

没有答案