﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0216</ErrorName>
  <Examples>
    <string>// cs0216: Missmatch of operators (true/false)
// Line:  4
class X {
	public static bool operator true (X i)
	{
		return true;
	}

	static void Main ()
	{
	}
}
</string>
    <string>// cs0216.cs: If you define operator &lt;, you also need to define &gt;
// Line:
class X {
	public static X operator &lt; (X a, int b)
	{
		return null;
	}

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