<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1969</ErrorName>
  <Examples>
    <string>// CS1969: Dynamic operation cannot be compiled without `Microsoft.CSharp.dll' assembly reference
// Line: 19
// Compiler options: -noconfig

using System;

namespace System.Runtime.CompilerServices
{
	class DynamicAttribute : Attribute
	{
	}
}

class C
{
	public static void Main ()
	{
		dynamic d = null;
		d++;
	}
}
</string>
  </Examples>
</ErrorDocumentation>