<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0528</ErrorName>
  <Examples>
    <string>// CS0528:  `A' is already listed in interface list
// Line: 6
interface A {
        void stuff ();
}
class C: A, A {
        public void stuff () {}
        static void Main() {}
}

</string>
    <string>// CS0528: `System.IComparable' is already listed in interface list
// Line: 6

using System;

public interface IX: IComparable, IComparable {
    int CompareTo (object obj);
}
</string>
  </Examples>
</ErrorDocumentation>