Interface IMyInterface1 End Interface 'Create a new class named MyClass2: Class MyClass2 End Class 'Create a new class named MyClass1 that inherits MyClass2 'and implements IMyInterface1: Class MyClass1 Inherits MyClass2 Implements IMyInterface1 End Class