<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0525</ErrorName>
  <Examples>
    <string>// cs0525-2.cs: Interfaces cannot contain fields or constants
// Line: 9

interface Interface
{
    const bool value = false;
}
</string>
    <string>// cs0525.cs: Interfaces cannot contain fields
// Line: 5
interface Interface { 
	bool value = false;
}</string>
  </Examples>
</ErrorDocumentation>