<?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>CS0417</ErrorName>
  <Examples>
    <string>// CS0417.cs: `T': cannot provide arguments when creating an instance of a variable type
// Line: 9

public class Foo&lt;T&gt;
	where T : new ()
{
	public T Create ()
	{
		return new T (8);
	}
}

class X
{
	static void Main ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>