CSharp examples for Custom Type:interface
Interfaces may derive from other interfaces. For instance:
public interface IUndoable { void Undo(); } public interface IRedoable : IUndoable { void Redo(); }
IRedoable "inherits" all the members of IUndoable.