'Implements' ステートメントは、'Inherits' ステートメントの後およびクラス内のすべての宣言の前に記述しなければなりません。

更新 : 2007 年 11 月

Implements ステートメントが無効な場所で検出されました。

Error ID: BC31053

このエラーを解決するには

  • Inherits ステートメントの直後、および任意の宣言の前に Implements ステートメントを配置します。たとえば、次のようにします。

    Class Derived
       Inherits Base
       Implements One
       Sub SubOne() Implements One.Method1
          ' Add code to implement the method.
       End Sub
    End Class
    

参照

参照

Implements (Visual Basic)

その他の技術情報

Visual Basic におけるインターフェイス