<?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>CS0254</ErrorName>
  <Examples>
    <string>// cs0254.cs: The right hand side of a fixed statement assignment may not be a cast expression
// Line: 16
// Compiler options: -unsafe

class Box {
    public int value;
}

unsafe struct Obsolete {
}

class MainClass {
        unsafe public static void Main ()
        {
                Box b = new Box ();
                fixed (long* p = (long*)&amp;b.value)
                {
                }
        }
}</string>
  </Examples>
</ErrorDocumentation>