﻿<?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>CS0260</ErrorName>
  <Examples>
    <string>// CS0260: Missing partial modifier on declaration of type `Foo'; another partial implementation of this type exists
// Line: 6
public partial class Foo
{ }

public class Foo
{ }

class X
{
	static void Main ()
	{ }
}
</string>
    <string>// CS0260: Missing partial modifier on declaration of type `Foo'; another partial implementation of this type exists
// Line: 3
public class Foo
{ }

public partial class Foo
{ }

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