<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0244</ErrorName>
  <Examples>
    <string>// CS0244: The `is' operator cannot be applied to an operand of pointer type
// Line: 9
// Compiler options: -unsafe

class C
{
    static unsafe void Main()
    {
        bool p = null is int*;
    }
}
</string>
    <string>// CS0244: The `is' operator cannot be applied to an operand of pointer type
// Line: 7
// Compiler options: -unsafe

class UnsafeClass {
        unsafe UnsafeClass (int* pointer) {
                if (pointer is string) {}
        }
}


</string>
  </Examples>
</ErrorDocumentation>