“Set”参数必须与包含属性的类型相同

更新:2007 年 11 月

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
    

请参见

任务

如何:向类添加字段和属性

概念

Property 过程

属性和属性过程