<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1573</ErrorName>
  <Examples>
    <string>// CS1573: Parameter `j' has no matching param tag in the XML comment for `Testing.Test.Baz(int, int)'
// Line: 10
// Compiler options: -doc:dummy.xml -warn:4 -warnaserror

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