I have the following class in C#:
public class SyncListener : SyncStatusListener
{ ... }
and I want to convert it to VB.NET which I think would look like this:
Public Class SyncListener
Inherits SyncStatusListener
...
End Class
but here comes the question: SyncStatusListener is an interface and VB.NET does not allow inherit from interfaces. How can I convert the C# code to VB.NET in this case?
Thank you in advance!