I want to do something like this:
List childList = new List(); ... List parentList = childList;
How
You can do this by using a Linq approach of the apply extension method, i.e.:
List parentList = childList.Cast().ToList();