ASP编程技术:类属性语法
2015-3-4编辑:ljnbset
类属性语法
类属性语法已更改,并且不再包括 Property Let、Property Get 和 Property Set。新的属性语法与 C# 中的属性语法相似。
Public Property ThisProperty As String
Get
ThisProperty = InternalValue
End Get
Set
InternalValue = value
End Set
End Property