属性“<attributename>”不能应用多次

更新:2007 年 11 月

此属性只能应用一次。 AttributeUsage 属性决定了属性是否可以应用多次。

**错误 ID:**BC30663

更正此错误

  1. 确保属性只应用一次。

  2. 如果使用的是自已开发的自定义属性,请考虑更改其 AttributeUsage 属性,以允许属性使用多次,如下面的示例所示。

    <AttributeUsage(AllowMultiple := True)>
    

请参见

参考

AttributeUsageAttribute

其他资源

Visual Basic 中的属性 (Attribute)

Visual Basic 中的自定义属性 (Attribute)