<?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>CS1533</ErrorName>
  <Examples>
    <string>// CS1533: Invoke cannot be called directly on a delegate
// Line : 11
// Compiler options: -langversion:ISO-1

public class TestClass
{
	delegate void OneDelegate (int i);

	static void Main()
	{
		OneDelegate d = new OneDelegate (TestMethod);
		d.Invoke (1);
	}
	public static void TestMethod (int i)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>