<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0248</ErrorName>
  <Examples>
    <string>// CS0248: Cannot create an array with a negative size
// Line: 6

public class MainClass {
        public static void Main () {
                byte[] byteArray = new byte[-1];
        }
}


</string>
  </Examples>
</ErrorDocumentation>