每當有關於屬性的信譽問題,我看到大部分的討論情況各地函數/方法VS屬性。但我也想知道引人注目理由使用性質相關的私人領域與公開場直接本身,櫃面最常見的get/set行爲,沒有其他的處理,我的意思是這樣地產(沒有額外的處理)與公共領域
public string CustomerName;
VS
private string customerName;
public string CustomerName
{
get{return customerName;}
set(string value){this.customerName=value;}
}
你也可以做「public string CustomerName {get; set;}」 – cyberconte 2009-08-13 15:01:52