1.14 屬性(Properties)
關於屬性就不用多說了。可能有點特別的是如何得到一個屬性和設置一個屬性。請諸位看下例:*/
public class Button: Control
{
private string caption;
public string Caption {
get {
return caption;
}
set {
caption = value;
Repaint();
}
}
}
/*
有了上面的定義,我們就可以對Button進行讀取和設置它的Caption屬性:*/
Button b = new Button();
b.Caption = "ABC"; // 設置
string s = b.Caption; // 讀取
b.Caption += "DEF”; // 讀取 & 設置