這是我的階級結構需要幫助的C#編碼
public class Customer
{
List<Address> add = null;
public Customer()
{
add = new List<Address>();
}
public int EmpID { get; set; }
public string Name { get; set; }
public List<Address> Address
{
get { return add; }
set { add = value; }
}
public double Salary { get; set; }
}
public class Address
{
public string Address1 { get; set; }
public string Address2 { get; set; }
public string PostCode { get; set; }
}
public void Populate()
{
List<Customer> oCust = new List<Customer>()
{
new Customer() { EmpID=1, Name="Sonia"},
new Customer() { EmpID=2, Name="Bill"},
new Customer() { EmpID=3, Name="Mark"},
};
}
從populate方法,我與地址一起填充客戶。 當我填充然後客戶如何與它一起 填入地址我不是一個高級用戶,請指導我有關的代碼,如何 new Customer() { EmpID=3, Name="Mark" new Address{}}
,
請幫助....感謝
你可能要考慮'Address'取出二傳手,因爲你可以添加到列表中,而無需更改整個列表... –
您的代碼很混亂。客戶是否應該有一個地址或多個地址? – Achim
這是你能想出的最好的頭銜嗎? –