I want to do something like this:
List<Child> childList = new List<Child>();
...
List<Parent> parentList = childList;
However, because parentList is a List of Child's ancestor, rather than a direct ancestor, I am unable to do this. Is there workaround (other than adding each element individually)?