<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0622</ErrorName>
  <Examples>
    <string>// CS0622: Can only use array initializer expressions to assign to array types. Try using a new expression instead
// Line: 7

class X {
	public static void Main ()
        {
            int i = { 3, 4, 5};
        }
}
</string>
  </Examples>
</ErrorDocumentation>