<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0524</ErrorName>
  <Examples>
    <string>// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        delegate void D ();
}
</string>
    <string>// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 4

interface Interface {
        enum E {
            White,
            Black
        }
}
</string>
    <string>// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        interface I {}
}
</string>
    <string>// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        public struct Struct {
        }
}
</string>
    <string>// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
// Line: 5

interface Interface {
        public class C {
        }
}
</string>
  </Examples>
</ErrorDocumentation>