<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0501</ErrorName>
  <Examples>
    <string>// CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial
// Line: 6

public abstract class Test
{
	public string this [string key] { get; set; }
}
</string>
    <string>// CS0501: `C.operator !=(C, C)' must have a body because it is not marked abstract, extern, or partial
// Line: 6

class C
{
	public static bool operator != (C l, C r);
	public static bool operator == (C l, C r);
}
</string>
    <string>// CS0501: `Class.X()' must have a body because it is not marked abstract, extern, or partial
// Line: 5

class Class {
	virtual public void X ();
}
</string>
  </Examples>
</ErrorDocumentation>