<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0762</ErrorName>
  <Examples>
    <string>// CS0762: Cannot create delegate from partial method declaration `C.Foo()'
// Line: 12

partial class C
{
	delegate void D ();

	partial void Foo ();

	void Test ()
	{
		D d = Foo;
	}
}
</string>
    <string>// CS0762: Cannot create delegate from partial method declaration `C.Foo()'
// Line: 12

partial class C
{
	delegate void D ();

	partial void Foo ();

	static void Main ()
	{
		D d = new D (new C ().Foo);
	}
}
</string>
  </Examples>
</ErrorDocumentation>