<?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>CS0213</ErrorName>
  <Examples>
    <string>// cs0213.cs: You cannot use the fixed statement to take the address of an already fixed expression
// Line: 12
// Compiler options: -unsafe

class UnsafeClass {
        unsafe UnsafeClass () {
                int value = 5;
                Calculate(value);
        }
        
        unsafe void Calculate (int value) {
                fixed (int *x = &amp;value) {}
        }
}


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