I would not be surprised to not get any response.....
If you write this and run in on IronPython Console, it works but TBC throws this exception and asks to use Array[Type] which is not what I want use. I need to be able to use Collections.Generics not Array[Type].
class point:
def __init__(self,x,y,z):
... self.X=x
... self.Y=y
... self.Z=z
...
>>> PointList=List[point]()
>>> point1=point(2,5,6)
>>> point2=point(4,7,8)
>>> point3=point(64,47,38)
>>> PointList.Add(point1)
>>> PointList.Add(point2)
above script works on IronPython Console but when I run it with TBC it throws this nasty exception.

------------------------------
Morteza Kiani
------------------------------