<?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>CS0208</ErrorName>
  <Examples>
    <string>// cs0208.cs: Cannot take the address or size of a variable of a managed type ('cs208.Foo')
// Line: 20
// Compiler options: -unsafe

namespace cs208
{
	public class Foo
	{
	}

	public class Bar
	{
		unsafe static void Main ()
		{			
			Foo f = new Foo ();
			Foo *s = &amp;f;
		}
	}
}
</string>
    <string>// cs0208.cs: Cannot take the address or size of a variable of a managed type ('cs208.Foo')
// Line: 20
// Compiler options: -unsafe

namespace cs208
{
	public class Foo
	{
		public int Add (int a, int b)
		{
			return a + b;
		}
	}

	public class Bar
	{
		unsafe static void Main ()
		{			
			Foo f = new Foo ();
			void *s = &amp;f;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>