show/hide this revision's text 2 added 10 characters in body

I have the following VB.net interface that I need to port to C#. C# does not allow enumerations in interfaces. How can I port this without changing code that uses this interface?

Public Interface MyInterface

    Enum MyEnum
        Yes = 0
        No = 1
        Maybe = 2
    End Enum

    ReadOnly Property Number() As MyEnum

End Interface
show/hide this revision's text 1

How to convert VB.net interface with enum to C#

I have the following VB.net interface that I need to port to C#. C# does not allow enumerations in interfaces. How can I port this without changing code that uses this interface?

Public Interface MyInterface

Enum MyEnum
    Yes = 0
    No = 1
    Maybe = 2
End Enum

ReadOnly Property Number() As MyEnum

End Interface