<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0179</ErrorName>
  <Examples>
    <string>// CS0179: `Bar.OnFoo.add' cannot declare a body because it is marked extern
// Line: 9

using System;

public delegate void FooHandler ();

class Bar {
	extern event FooHandler OnFoo {
		add { }
		remove { }
	}
}

</string>
    <string>// CS0179: `Bar.Foo.set' cannot declare a body because it is marked extern
// Line: 5

class Bar {
	extern int Foo {
		set { }
		get { }
	}
}

</string>
    <string>// cs0179.cs: `X.extern_method()' cannot declare a body because it is marked extern
// Line:

class X {

	public extern int extern_method ()
		{
		}
	
	public static void Main ()
		{
		}
}
      
</string>
  </Examples>
</ErrorDocumentation>