namespace WPFControlTutorialPart2_Basic { public class Person { PRivate string _name; public string Name { get { return _name; } set { _name = value; } } //自動屬性 public int Age { get; set; } } }
上面應(yīng)該算是c#的最基礎(chǔ)的屬性,大家都很熟悉.
注意點(diǎn):默認(rèn)屬性沒有初始化,不然可能會發(fā)生很多未知的錯誤.
(以下可以選看,如果你接觸過以下技術(shù)的話,其實(shí)也很簡單)
ASP.NET自定義控件屬性
namespace WPFControlTutorialPart2_WebApp { public class WebFromControl : WebControl { private string _controlName; public string ControlName { get { return _controlName; } set { _controlName = value; } }