I have this .NET solution where I need to get some old vb.net projects and convert them into new c# ones.
I stuck with one particular interface and need some help. This the vb.net signature:
Public Interface SomeInterface(Of T as Class)
Inherits IDisposable
...
End Interface
How do I write this in c#?
1 Answer