Is the following the only way to create a generic containing a python class?<br><br><br>from System.Collections.Generic import List<br>from System import Type<br><br>class Foo:<br> >>class stuff<<<br><br>l = List[Type.GetType(Foo())]()<br>
<br><br>I assume this is the nature of dynamic typing, but is there a way to get the type from the classobj, and not an instance?<br>