Extending an Interface - CSharp Custom Type

CSharp examples for Custom Type:interface

Introduction

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.


Related Tutorials