嗨,我最近开始学习 C#,并且对属性有一些疑问。假设我有这样的声明:
private int minAge { get; set; }
这是否转化为:
private int minAge
public int MinAge
{
get { return this.minAge; }
set { this.minAge = Convert.ToInt16(TextBox1.Text); } //this is what I would like to set the field to
}
假设我有一个按钮,当我按下该按钮时,我需要它来设置 minAge 字段,然后返回数据。我怎样才能做到这一点?
我试过这个,但它似乎不起作用:
minAge.get //to return data
minAge.set = Convert.ToInt16(TextBox1.Text); //to set the data