I\'m not really sure how to title this question but basically I have an interface like this:
public interface IFoo { string ToCMD(); }
a co
You could also just use interfaces. There is no reason to use an abstract class.
public interface Foo : IFoo { } public interface Bar : IFoo { }