<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0531</ErrorName>
  <Examples>
    <string>// CS0531: `I.P': interface members cannot have a definition
// Line: 6

interface I
{
	int P =&gt; 1;
}</string>
    <string>// CS0531: `Interface.P.get': interface members cannot have a definition
// Line:

public interface Interface {        
	int P { get {} }
}</string>
    <string>// CS0531: `Interface.Foo()': interface members cannot have a definition
// Line: 5

public interface Interface {
        void Foo () {
        }
}



</string>
  </Examples>
</ErrorDocumentation>