<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1975</ErrorName>
  <Examples>
    <string>// CS1975: The constructor call cannot be dynamically dispatched within constructor initializer
// Line: 14

public class A
{
	public A (dynamic arg)
	{
	}
}

public class B : A
{
	public B (dynamic arg)
		: base (arg)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>