<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0212</ErrorName>
  <Examples>
    <string>// cs0212: You can only take the address of an unfixed expression inside
//         a fixed statement initializer.
// Line: 19
// Compiler options: -unsafe

using System;

class X
{
	public int x;
	public X ()
	{
		this.x = 4;
	}

	public unsafe static void Main ()
	{
		X x = new X ();
		int *p = &amp;x.x;
	}
}
</string>
  </Examples>
</ErrorDocumentation>