How to convert VB.net interface with enum to C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T08:02:42Zhttp://stackoverflow.com/feeds/question/178561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178561/how-to-convert-vb-net-interface-with-enum-to-c4How to convert VB.net interface with enum to C#watchdog2022008-10-07T13:55:51Z2008-10-07T14:24:53Z
<p>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?</p>
<pre><code>Public Interface MyInterface
Enum MyEnum
Yes = 0
No = 1
Maybe = 2
End Enum
ReadOnly Property Number() As MyEnum
End Interface
</code></pre>
http://stackoverflow.com/questions/178561/how-to-convert-vb-net-interface-with-enum-to-c/178573#17857313Answer by Alexander Kojevnikov for How to convert VB.net interface with enum to C#Alexander Kojevnikov2008-10-07T13:57:52Z2008-10-07T13:57:52Z<pre><code>public enum MyEnum
{
Yes = 0,
No = 1,
Maybe = 2
}
public interface IMyInterface
{
MyEnum Number { get; }
}
</code></pre>
http://stackoverflow.com/questions/178561/how-to-convert-vb-net-interface-with-enum-to-c/178583#1785830Answer by Anders for How to convert VB.net interface with enum to C#Anders2008-10-07T13:59:25Z2008-10-07T13:59:25Z<p>What Alex said, he beat me to the punch.</p>
http://stackoverflow.com/questions/178561/how-to-convert-vb-net-interface-with-enum-to-c/178677#1786776Answer by Jeremy Frey for How to convert VB.net interface with enum to C#Jeremy Frey2008-10-07T14:24:53Z2008-10-07T14:24:53Z<p>In short, you can't change that interface without breaking code, because C# can't nest types in interfaces. When you implement the VB.NET versions's interface, you are specifying that Number will return a type of MyInterface.MyEnum:</p>
<pre><code>class TestClass3 : TestInterfaces.MyInterface
{
TestInterfaces.MyInterface.MyEnum TestInterfaces.MyInterface.Number
{
get { throw new Exception("The method or operation is not implemented."); }
}
}
</code></pre>
<p>However, since C# can't nest types inside interfaces, if you break the enumerator out of the interface, you will be returning a different data type: in this case, MyEnum.</p>
<pre><code>class TestClass2 : IMyInterface
{
MyEnum IMyInterface.Number
{
get { throw new Exception("The method or operation is not implemented."); }
}
}
</code></pre>
<p>Think about it using the fully qualified type name. In the VB.NET interface, you have a return type of</p>
<p>MyProject.MyInterface.MyEnum</p>
<p>In the C# interface, you have:</p>
<p>MyProject.MyEnum.</p>
<p>Unfortunately, code that implements the VB.NET interface would have to be changed to support the fact that the type returned by MyInterface.Number has changed.</p>
<p>IL supports nesting types inside interfaces, so it's a mystery why C# doesn't:</p>
<pre><code>.class public interface abstract auto ansi MyInterface
</code></pre>
<p>{
.property instance valuetype TestInterfaces.MyInterface/MyEnum Number
{
.get instance valuetype TestInterfaces.MyInterface/MyEnum TestInterfaces.MyInterface::get_Number()
}</p>
<pre><code>.class auto ansi sealed nested public MyEnum
extends [mscorlib]System.Enum
</code></pre>
<p>{
.field public static literal valuetype TestInterfaces.MyInterface/MyEnum Maybe = int32(2)</p>
<pre><code> .field public static literal valuetype TestInterfaces.MyInterface/MyEnum No = int32(1)
.field public specialname rtspecialname int32 value__
.field public static literal valuetype TestInterfaces.MyInterface/MyEnum Yes = int32(0)
}
</code></pre>
<p>}</p>
<p>If you have lots of code in other assemblies that make use of this interface, your best bet is to keep it inside a separate VB.NET assembly, and reference it from your C# projects. Otherwise, it's safe to convert it, but you'll have to change any code that uses it to return the different type.</p>