<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0543</ErrorName>
  <Examples>
    <string>// CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
// Line : 8

public class Blah
{
	public enum MyEnum : byte {
		Foo = 255,
		Bar
	}
}
</string>
  </Examples>
</ErrorDocumentation>