<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0261</ErrorName>
  <Examples>
    <string>// CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
// Line: 6
partial class Foo
{ }

partial struct Foo
{ }

class X
{
	static void Main ()
	{ }
}
</string>
  </Examples>
</ErrorDocumentation>