<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8009</ErrorName>
  <Examples>
    <string>using System;
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion ("1.0.0.0")]
[assembly: AssemblyCulture ("en-US")]

public class Lang
{
}
</string>
    <string>// CS8009: Referenced assembly `CS8009-lib' has different culture setting of `en-US'
// Line: 0
// Compiler options: -r:CS8009-lib.dll -warnaserror

using System;

class Program
{
	static void Main ()
	{
		Console.WriteLine (typeof (Lang));
	}
}
</string>
  </Examples>
</ErrorDocumentation>