<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0650</ErrorName>
  <Examples>
    <string>// CS0650: Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier. To declare a fixed size buffer field, use the fixed keyword before the field type
// Line: 7

class X {
        public static void Main ()
        {
            int myarray[2];
        }
}
</string>
  </Examples>
</ErrorDocumentation>