こんにちは、最近 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