❔ ✅ I can't convert List<BaseClass> to List<T> where T: BaseClass.
I have a
Everything works nicely besides this - I can't find a way to get for example
List<List<Component>>. Component is a base class, and each item in this outer list is actually a List with different sub-classes of Component. At run-time I expect it to look like this:Everything works nicely besides this - I can't find a way to get for example
List<SubComponentA> from the outer list. Here's my current attempt:
