<?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>CS1626</ErrorName>
  <Examples>
    <string>// cs01626.cs: Cannot yield a value in the body of a try block with a catch clause
// Line: 11

using System.Collections;

class C: IEnumerable
{
   public IEnumerator GetEnumerator ()
   {
	   try {
	       try {
		   yield return this;
	       }
	       finally {}
	   }
	   catch (System.Exception) {
	   }
   }
}
</string>
    <string>// cs01626.cs: Cannot yield a value in the body of a try block with a catch clause
// Line: 11

using System.Collections;

class C: IEnumerable
{
   public IEnumerator GetEnumerator ()
   {
	   try {
		   yield return this;
	   }
	   catch {
	   }
   }
}
</string>
  </Examples>
</ErrorDocumentation>