<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1533</ErrorName>
  <Examples>
    <string>// cs1533 : Invoke cannot be called directly on a delegate
// Line : 11

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>