我想知道一种典型的,高效的“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]