<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1572</ErrorName>
  <Examples>
    <string>// CS1572: XML comment on `Testing.Test.this[int]' has a param tag for `mismatch', but there is no parameter by that name
// Line: 10
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror

namespace Testing
{
	class Test
	{
		/// &lt;param name='mismatch'&gt;mismatch&lt;/param&gt;
		public int this[int i] {
			set {}
		}
	}
}
</string>
    <string>// CS1572: XML comment on `Testing.Test.D' has a param tag for `mismatch', but there is no parameter by that name
// Line: 10
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror

namespace Testing
{
	class Test
	{
		/// &lt;param name='mismatch'&gt;mismatch&lt;/param&gt;
		public delegate void D (int i);
	}
}
</string>
    <string>// CS1572: XML comment on `Testing.Test.Baz(int)' has a param tag for `mismatch', but there is no parameter by that name
// Line: 10
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror

namespace Testing
{
	public class Test
	{
		/// &lt;param name='mismatch'&gt;mismatch&lt;/param&gt;
		public void Baz (int i) {}
	}
}
</string>
  </Examples>
</ErrorDocumentation>