I want to do something like this:
List childList = new List(); ... List parentList = childList;
How
Using LINQ:
List parentList = childList.Cast().ToList();
Documentation for Cast<>()