I have an object with properties for a Part. But some parts are "Parents" and have child parts. Those child parts have all the same properties as the parent part (not the same property values, just the same properties with their own values).So for each Part object, I want to have a list property of child parts. What I want to do, is create a list of Part Objects - one for each child part within the Part object if it's a parent part.My question is... can you have a list of objects of the same object type within an object? (does this even make sense?)Simple example:\[code\]public class Part{ private string _Part; private string _Description; private List<Part> _childParts = new List<Part>();}\[/code\]