Compiler Error CS0227

Unsafe code may only appear if compiling with /unsafe

If source code contains the unsafe keyword, then the AllowUnsafeBlocks compiler option must also be used. For more information, see Unsafe Code and Pointers.

To set the unsafe option in Visual Studio 2012, click on Project in the main menu, select the Build pane, and check the box that says "allow unsafe code."

The following sample, when compiled without /unsafe, generates CS0227:

// CS0227.cs
public class MyClass
{
   unsafe public static void Main()   // CS0227
   {
   }
}

See also