<?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>CS0244</ErrorName>
  <Examples>
    <string>// cs0244.cs: "is" or "as" are not valid on pointer types
// Line: 7
// Compiler options: -unsafe

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


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