<?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>CS0216</ErrorName>
  <Examples>
    <string>// cs0216-2.cs: The operator `X.operator true(X)' requires a matching operator `false' to also be defined
// Line:  4
class X {
	public static bool operator true (X i)
	{
		return true;
	}

	static void Main ()
	{
	}
}
</string>
    <string>// cs0216.cs: The operator `X.operator &lt;(X, int)' requires a matching operator `&gt;' to also be defined
// Line:
class X {
	public static X operator &lt; (X a, int b)
	{
		return null;
	}

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