<type1>“<typename>”必须为接口“<interfacename>”实现“<membername>”
更新:2007 年 11 月
错误消息
“<typename>”必须为接口“<interfacename>”实现“<membername>”。实现属性必须有匹配的“ReadOnly”/“WriteOnly”说明符。
类或结构要求实现接口,但没有实现由该接口定义的过程、属性或事件。必须实现接口的每个成员。
**错误 ID:**BC30154
更正此错误
用与接口中定义的名称和签名相同的名称和签名声明过程。确保至少包含 End Function、End Sub 或 End Property 语句。
将一个 Implements 子句添加到 Function、Sub、Property 或 Event 语句的末尾。例如:
Public Event ItHappened() Implements IBaseInterface.ItHappened
实现属性时,请确保其 ReadOnly 或 WriteOnly 的用法与接口定义中的一致。
实现属性时,请根据需要声明 Get 和 Set 过程。