我有下面的類,我需要它有一個孩子和孩子的孩子在父類中。 我該怎麼做?屬性與父類相同的屬性
public class Person {
public string Name { get; set; }
public int Age { get; set; }
// this person can have one or more children with Name & age properties
//this person's children can have one or more children with Name & age properties
}
謝謝
'public List Children {get; } = new List ();'更一般地說,這是一種** [遞歸數據類型](https://en.wikipedia.org/wiki/Recursive_data_type)** –
'public List Children {get;設置;}'? –
GSerg
一些監視器不會讓我回答你的問題。不要創建一個Children列表,因爲每個Child只有一個Parent。每個人都應該有一個父母名單...列表父母。 –