﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0524</ErrorName>
  <Examples>
    <string>// cs0524.cs: 'I' : interfaces cannot declare types// Line: 5
interface Interface {
        interface I {}
}</string>
    <string>// cs0524.cs: 'E' : interfaces cannot declare types// Line: 5
interface Interface {
        enum E {
            White,
            Black
        }
}</string>
    <string>// cs0524.cs: 'C' : interfaces cannot declare types
// Line: 5

interface Interface {
        public class C {
        }
}
</string>
    <string>// cs0524.cs: 'D' : interfaces cannot declare types
// Line: 5

interface Interface {
        delegate void D ();
}
</string>
    <string>// cs0524.cs: 'Struct' : interfaces cannot declare types
// Line: 5

interface Interface {
        public struct Struct {
        }
}
</string>
  </Examples>
</ErrorDocumentation>