I want to conversion list[int] to array[int] or int to array[int]
I tried to install Mathnet.numerics. but I don't know where I install it and how to install..
for i in range(len(lst)):
k = List.GetItemAtIndex(lst,i)
p = array[
o = List.RemoveItemAtIndex(lst,p)
l = Solid.ByUnion(o)
Arr_u[i] = Geometry.IntersectAll(k,l)
it's my revit dynamo code(ironpython).
at List.RemoveItemAtIndex(lst,p)
, p is must be array[int]
.
but I can't change it.
error code is "expected Array[int], got int"