我一直想知道以下两者之间有什么区别:
Public Property ProgressMaxValue() As Integer
Get
Return maxval
End Get
Set(ByVal Value As Integer)
maxval = Value
End Set
End Property
对比
Dim progressMaxValue as Integer
ProgressMaxValue = 1184
做同样的事情对吗?我检查了其他人的代码,并且看到越来越多的第一个示例。只是想弄清楚重点,区别以及人们使用它的原因,哈哈。也许我错过了备忘录?