I have this generi interface and class in written in Java
public abstract class MyRootAbstractClass<W>
{
}
public abstract class MyDerivedAbstractClass<W extends MyRootFatherClass>
{
}
Notice :MyRootFatherClass (in MyDeriveAbstractClass declaration) doesn't asks for generic type (<W>).
Is any one knows How can i convert this code to C#???