<?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>CS0227</ErrorName>
  <Examples>
    <string>// cs0227-2.cs: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5

class UnsafeClass {
        UnsafeClass () 
	{
	    unsafe {}
	}
}
</string>
    <string>// cs0227.cs: Unsafe code requires the `unsafe' command line option to be specified
// Line: 5

class UnsafeClass {
        unsafe UnsafeClass () {}
}


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