<?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>CS0260</ErrorName>
  <Examples>
    <string>// cs0260-2.cs: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
// Line: 6
public partial class Foo
{ }

public class Foo
{ }

class X
{
	static void Main ()
	{ }
}
</string>
    <string>// cs0260.cs: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
// Line: 3
public class Foo
{ }

public partial class Foo
{ }

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