<?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>CS0564</ErrorName>
  <Examples>
    <string>// cs0564.cs: Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int
// Line: 5

class SampleClass {
        public static int operator &lt;&lt; (object value, int count) {
                return 0;
        }
}
</string>
    <string>// cs0564.cs: Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int
// Line: 5

class SampleClass {
        public static int operator &lt;&lt; (SampleClass value, SampleClass count) {
                return 0;
        }
}
</string>
  </Examples>
</ErrorDocumentation>