This repository was archived by the owner on Oct 16, 2020. It is now read-only.
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
Implicit interface event implementations are not converted correctly to VB #186
Open
Description
SD-1762, originally created on 11/12/2010 22:09:58 by Siegfried Pammer
This C# code:
public class TestClass : ITest
{
public event EventHandler TestChanged;
}
Is converted to this VB code:
Public Class TestClass
Implements ITest
Public Event TestChanged As EventHandler 'Implements
ITest.TestChanged
End Class
the Implements-clause needs to be added to the event definition.