Interfaces Based on Interfaces : Interface hierarchy : Class C# Examples


C# Examples » Class » Interface hierarchy »

 

Interfaces Based on Interfaces






One interface can inherit another.
The syntax is the same as for inheriting classes.





    
using  System.Runtime.Serialization;
using  System;

interface  IComparableSerializable  :  IComparable,  ISerializable
{
        string  GetStatusString();
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Class
» Interface hierarchy