“Implements”语句在类中必须位于任何“Inherits”语句之后,所有声明之前
更新:2007 年 11 月
Implements 语句的位置无效。
**错误 ID:**BC31053
更正此错误
将 Implements 语句紧跟在任何 Inherits 语句之后,但在任何声明之前。例如:
Class Derived Inherits Base Implements One Sub SubOne() Implements One.Method1 ' Add code to implement the method. End Sub End Class