“Set”参数的类型必须与包含属性的类型相同
Set
属性过程的参数的类型不同于其所属属性的类型。
错误 ID: BC31064
将参数的数据类型更改为
Set
,使其匹配于属性的数据类型。 例如:Class Class1 ' Declare a local variable to hold the property value. Private Fval As Integer Property F() As Integer Get Return Fval End Get Set(ByVal Value As Integer) Fval = Value End Set End Property End Class