disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 20.xml
blob6651c79df0ff17fa4a44240fb02bff8ddfd9b717
1 <?xml version="1.0"?>
2 <clause number="20" title="Interfaces">
3   <paragraph>An interface defines a contract. A class or struct that implements an interface must adhere to its contract. An interface may inherit from multiple base interfaces, and a class or struct may implement multiple interfaces. </paragraph>
4   <paragraph>Interfaces can contain methods, properties, events, and indexers. The interface itself does not provide implementations for the members that it defines. The interface merely specifies the members that must be supplied by classes or interfaces that implement the interface. </paragraph>
5 </clause>