<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1601</ErrorName>
  <Examples>
    <string>// CS1601: Method or delegate parameter cannot be of type `ref System.ArgIterator'
// Line: 10
using System;

class X {
	static void Main ()
	{
	}

	static void M (ref ArgIterator a)
	{
	}
}
</string>
    <string>// CS1601: Method or delegate parameter cannot be of type `ref System.TypedReference'
// Line: 10
using System;

class X {
	static void Main ()
	{
	}

	static void M (ref TypedReference a)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>