我想知道是否有人可以幫助我填充派生類的基本屬性的最佳方式。我想使用一種方法來填充基地的屬性,無論是使用基地還是兒童。填充基礎屬性的最佳方式是什麼?
這裏是什麼,我問一個例子:
public class Parent
{
public string Id {get; set;}
}
public class Child : Parent
{
public string Name {get; set;}
}
public Parent GetParent(int ID)
{
Parent myParent = new Parent();
//Lookup and populate
return Parent;
}
public Child GetChild(string name)
{
Child myChild = new Child();
//Use the GetParent method to populate base items
//and then
//Lookup and populate Child properties
return myChild;
}
通過構造函數填充? – sll 2013-02-21 15:54:20
可能重複[填充基類與子類?](http://stackoverflow.com/questions/3649354/populate-base-class-along-with-child-class) – MethodMan 2013-02-21 15:55:22
你可以做什麼'sll'有建議或者你可以採取繼承路線.. – MethodMan 2013-02-21 15:55:59