<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0541</ErrorName>
  <Examples>
    <string>// CS0541: `Interface.ICloneable.Clone()': explicit interface declaration can only be declared in a class or struct
// Line: 7

using System;

interface Interface: ICloneable {
        void ICloneable.Clone ();
}

class Test {
	static void Main () {}
}

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