老大们请帮忙解释一下以下的代码.我是菜鸟请请你们. Public Property Name As String Get Return txtName.Text End Get Set txtName.Text = Value End Set End Property Public Property 等等这些代码不明白.请老大们解释详细点..在此谢谢了
Public Property Name As String Get Return txtName.Text End Get Set txtName.Text = Value End Set End Property
這樣的定義可以讓你將這個類實例化後,只需要用對象名:比如 Temp類 Dim temp as new Temp() temp.Name = "hello" 就可以設置這個屬性的值,將txtName文本框值設置為hello. 同樣 Dim strTemp as String = temp.Name 可以將文本框的值賦給字符串。