﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1686</ErrorName>
  <Examples>
    <string>// cs1686.cs: Local variable `i' or its members cannot have their address taken and be used inside an anonymous method block
// Line: 16
// Compiler options: -unsafe

class X {
	delegate void S ();

	unsafe void M ()
	{
		int i;
		int * j ;

		S s = delegate {
			i = 1;
		};
		j = &amp;i;
	}

	static void Main () {}
}
</string>
  </Examples>
</ErrorDocumentation>