The <MethodName> Method of the <InterfaceName> Interface is not Implemented

Description

Not all members described in an interface are implemented in a class inherited from this interface.

Troubleshooting Tips

Add implementation of all the members described in the interface to the class.

Example

Interface IMyInterface
    Sub TestSub(a: Integer; b: String);
End Interface IMyInterface;

Class MyClass: Object, IMyInterface
    
End Class MyClass;

When the specified code is compiled, the following error is displayed: The TestSub method of the IMyInterface interface is not implemented. The error occurs because the MyClass class inherited from the IMyInterface interface does not contain implementation of a method described in the interface.

See also:

Compiler Messages