Skip to content
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
@dgrunwald

Description

@dgrunwald

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions